java - 从适配器替换时找不到 fragment ID 的 View

标签 java android fragment frame

我正在尝试用另一个 fragment 替换当前的 fragment 。我是通过适配器执行此操作的,因为我想在单击卡片时执行此操作。这是我在适配器中的代码:

itemView.setOnClickListener(v -> {
            if (mMovieCategory.getImageUrl() != null) {
                try {
                    //TODO
                    FragmentTransaction ft = ((AppCompatActivity) v.getContext()).getSupportFragmentManager()
                            .beginTransaction();
                    ft.replace(R.id.movie_container, new Fragment_Movie());
                    ft.addToBackStack(null);
                    ft.commit();
                } catch (Exception e) {
                    Log.e(TAG, "onClick: Image url is not correct");
                }
            }
        });

在替换函数中,我使用了分配给我想要调用的 fragment 的 id。这是 XML:

  <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/movie_container"
        tools:context=".MainActivity" >

        <ListView
            android:id="@+id/list"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:divider="@color/list_divider"
            android:dividerHeight="1dp"
            android:listSelector="@drawable/list_row_selector"/>
    </RelativeLayout>

这是我要调用的 fragment :

package com.lab.movietime;

import android.os.Bundle;

import androidx.fragment.app.Fragment;

import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import java.util.ArrayList;
import java.util.List;

import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

import android.app.Activity;
import android.app.ProgressDialog;
import android.graphics.Color;
import android.graphics.drawable.ColorDrawable;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.widget.ListView;

import com.android.volley.Response;
import com.android.volley.VolleyError;
import com.android.volley.VolleyLog;
import com.android.volley.toolbox.JsonArrayRequest;

import static com.android.volley.VolleyLog.TAG;

public class Fragment_Movie extends Fragment {

    private static final String url = "https://api.androidhive.info/json/movies.json";
    private ProgressDialog pDialog;
    private List<Movie> movieList = new ArrayList<Movie>();
    private ListView listView;
    private CustomListAdapter adapter;

    public Fragment_Movie() {
        // Required empty public constructor
    }

    public static Fragment_Movie newInstance() {
        Fragment_Movie fragment = new Fragment_Movie();
        Bundle args = new Bundle();
        fragment.setArguments(args);
        return fragment;
    }

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        if (getArguments() != null) {
        }
    }

    @Override
    public void onDestroy() {
        super.onDestroy();
        hidePDialog();
    }

    private void hidePDialog() {
        if (pDialog != null) {
            pDialog.dismiss();
            pDialog = null;
        }
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        // Inflate the layout for this fragment
        View view = inflater.inflate(R.layout.fragment_movie, container, false);
        listView = (ListView) view.findViewById(R.id.list);
        adapter = new CustomListAdapter(getActivity(), movieList);
        listView.setAdapter(adapter);

        pDialog = new ProgressDialog(getContext());
        // Showing progress dialog before making http request
        pDialog.setMessage("Loading...");
        pDialog.show();

        // Creating volley request obj
        JsonArrayRequest movieReq = new JsonArrayRequest(url,
                new Response.Listener<JSONArray>() {
                    @Override
                    public void onResponse(JSONArray response) {
                        Log.d(TAG, response.toString());
                        hidePDialog();

                        // Parsing json
                        for (int i = 0; i < response.length(); i++) {
                            try {

                                JSONObject obj = response.getJSONObject(i);
                                Movie movie = new Movie();
                                movie.setTitle(obj.getString("title"));
                                movie.setThumbnailUrl(obj.getString("image"));
                                movie.setRating(((Number) obj.get("rating"))
                                        .doubleValue());
                                movie.setYear(obj.getInt("releaseYear"));

                                // Genre is json array
                                JSONArray genreArry = obj.getJSONArray("genre");
                                ArrayList<String> genre = new ArrayList<String>();
                                for (int j = 0; j < genreArry.length(); j++) {
                                    genre.add((String) genreArry.get(j));
                                }
                                movie.setGenre(genre);

                                // adding movie to movies array
                                movieList.add(movie);

                            } catch (JSONException e) {
                                e.printStackTrace();
                            }

                        }

                        // notifying list adapter about data changes
                        // so that it renders the list view with updated data
                        adapter.notifyDataSetChanged();
                    }
                }, new Response.ErrorListener() {
            @Override
            public void onErrorResponse(VolleyError error) {
                VolleyLog.d(TAG, "Error: " + error.getMessage());
                hidePDialog();

            }
        });
        AppController.getInstance().addToRequestQueue(movieReq);
        return view;
    }
}

我得到的错误是:

No view found for id 0x7f0900ab (com.lab.movietime:id/movie_container) for fragment Fragment_Movie{1f8531a}

为什么? ID:container_movie 是否不正确?

最佳答案

假设movie_containerFragment中:您需要在Activity的布局中传递容器 View 的ID,而不是Fragment View 的 ID。

这将是View包含Fragment的ID,而不是View>包含在 fragment

关于java - 从适配器替换时找不到 fragment ID 的 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60565261/

相关文章:

java - 用 Snackbar 内部类替换 Toast

android - 什么时候在我的小型 Android 应用程序中制作 fragment 与 Activity ?

Java 方法重载与装箱/加宽

java - 从音频文件计算 FFT

java - jqgrid增加工具栏高度

Java重载困惑

android - 如何从 fragment 使用滑动菜单toggle()

java - 如何使用 T 和 List<T> 泛化类

android - Iappcompat v21 : material design ActionBar() InflateException error-inflating-class

android - 如何在Android 2.3 GingerBread 中使用 fragment ?