package app.fedilab.android.fragments; /* Copyright 2018 Thomas Schneider * * This file is a part of Fedilab * * This program is free software; you can redistribute it and/or modify it under the terms of the * GNU General Public License as published by the Free Software Foundation; either version 3 of the * License, or (at your option) any later version. * * Fedilab is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General * Public License for more details. * * You should have received a copy of the GNU General Public License along with Fedilab; if not, * see . */ import android.content.Context; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ListView; import android.widget.RelativeLayout; import android.widget.Toast; import androidx.annotation.NonNull; import androidx.fragment.app.Fragment; import org.jetbrains.annotations.NotNull; import java.util.List; import app.fedilab.android.R; import app.fedilab.android.asynctasks.RetrieveHowToAsyncTask; import app.fedilab.android.client.APIResponse; import app.fedilab.android.client.Entities.HowToVideo; import app.fedilab.android.drawers.HowToVideosAdapter; import app.fedilab.android.interfaces.OnRetrieveHowToInterface; import es.dmoral.toasty.Toasty; /** * Created by Thomas on 29/09/2018. * Fragment to display how to videos */ public class DisplayHowToFragment extends Fragment implements OnRetrieveHowToInterface { private Context context; private RelativeLayout mainLoader; private ListView lv_howto; @Override public View onCreateView(@NonNull LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { //View for fragment is the same that fragment accounts View rootView = inflater.inflate(R.layout.fragment_how_to, container, false); context = getContext(); lv_howto = rootView.findViewById(R.id.lv_howto); mainLoader = rootView.findViewById(R.id.loader); mainLoader.setVisibility(View.VISIBLE); new RetrieveHowToAsyncTask(context, DisplayHowToFragment.this); return rootView; } @Override public void onCreate(Bundle saveInstance) { super.onCreate(saveInstance); } @Override public void onAttach(@NotNull Context context) { super.onAttach(context); this.context = context; } public void onDestroy() { super.onDestroy(); } @Override public void onRetrieveHowTo(APIResponse apiResponse) { mainLoader.setVisibility(View.GONE); if (apiResponse.getError() != null) { if (apiResponse.getError().getError().length() < 100) { Toasty.error(context, apiResponse.getError().getError(), Toast.LENGTH_LONG).show(); } else { Toasty.error(context, getString(R.string.long_api_error, "\ud83d\ude05"), Toast.LENGTH_LONG).show(); } return; } List howToVideos = apiResponse.getHowToVideos(); if (howToVideos == null || howToVideos.size() == 0) { Toasty.error(context, context.getString(R.string.toast_error), Toast.LENGTH_LONG).show(); return; } HowToVideosAdapter howToVideosAdapter = new HowToVideosAdapter(howToVideos); lv_howto.setAdapter(howToVideosAdapter); } }