簡體   English   中英

片段onitemclick內的Listview無法正常工作

[英]Listview inside fragment onitemclick is not working

在我的應用程序的主視圖中,有3個選項卡。 這3個標簽頁均帶有帶有視圖適配器的單獨片段。 在我的第二個選項卡中,有一個列表視圖(包含在一個片段中)。 當用戶單擊列表視圖時,我需要在那里顯示另一個片段。 但是當用戶單擊列表視圖項時,出現了這樣的錯誤

No view found for id 0x7f0e008a (com.example.abc.myapp:id/new_output) for fragment MantraFragment{30391e5 #3 id=0x7f0e008a}

我在stackoverflow的其他問題中發現了此錯誤。 嘗試了解決方案,但是沒有用。 請幫助我解決此問題。

包含listview的類

public class TwoFragment extends Fragment  {
private ListView listView;
private String items[];


public TwoFragment() {
}

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    items = getResources().getStringArray(R.array.races_array);

}

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    View rootView = inflater.inflate(R.layout.fragment_two, container, false);

    listView = (ListView) rootView.findViewById(R.id.mylistView);
    CustomListAdapter adapter = new CustomListAdapter(getActivity(), items);
    listView.setAdapter(adapter);

    listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
        @Override
        public void onItemClick(AdapterView<?> parent, View view,
                                int position, long id) {

            FragmentManager fm = getActivity().getSupportFragmentManager();
            android.support.v4.app.FragmentTransaction ft = fm.beginTransaction();


            Fragment newFrag = new MyNewFragment();
            Bundle arguments = new Bundle();
            newFrag.setArguments(arguments);
            ft.replace(R.id.new_output, newFrag);
            ft.addToBackStack(null);
            ft.commit();

        }
    });

    return rootView;
}}

MyNewFragment.class

public class MyNewFragment extends Fragment{

public MyNewFragment(){
   }
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

    }


@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {

    View rootView= inflater.inflate(R.layout.mynewfrag_view, container, false);

    return rootView;
}}

MyNewFragment視圖(mynewfrag_view)

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:gravity="center"

    android:layout_height="match_parent">
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:textColor="#FF0000"
        android:textSize="20sp"
        android:id="@+id/msg2"/>


    <fragment
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#b0b0ff"
        android:id="@+id/new_output" />


</LinearLayout>

MainActivity類

public class MainActivity extends AppCompatActivity  {

   private Toolbar toolbar;
   private TabLayout tabLayout;
   private ViewPager viewPager;



  @Override
   protected void onCreate(Bundle savedInstanceState) {
       super.onCreate(savedInstanceState);
       setContentView(R.layout.activity_main);

       Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
       setSupportActionBar(toolbar);

       viewPager = (ViewPager) findViewById(R.id.viewpager);
       setupViewPager(viewPager);

       tabLayout = (TabLayout) findViewById(R.id.tabs);
       tabLayout.setupWithViewPager(viewPager);
   }


 private void setupViewPager(ViewPager viewPager) {
       ViewPagerAdapter adapter = new ViewPagerAdapter(getSupportFragmentManager());
       adapter.addFragment(new OneFragment(), "One");
       adapter.addFragment(new TwoFragment(), "Two");
       adapter.addFragment(new ThreeFragment(), "Three");

   viewPager.setAdapter(adapter);
   }



 public class ViewPagerAdapter extends FragmentPagerAdapter {
       private final List<Fragment> mFragmentList = new ArrayList<>();
       private final List<String> mFragmentTitleList = new ArrayList<>();

   public ViewPagerAdapter(FragmentManager manager) {
       super(manager);
   }

   @Override
   public Fragment getItem(int position) {
       return mFragmentList.get(position);
   }

   @Override
   public int getCount() {
       return mFragmentList.size();
   }

   public void addFragment(Fragment fragment, String title) {
       mFragmentList.add(fragment);
       mFragmentTitleList.add(title);
   }

   @Override
   public CharSequence getPageTitle(int position) {
       return mFragmentTitleList.get(position);
   }   }}

MainActivity布局(activity_main)

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.design.widget.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        app:layout_scrollFlags="scroll|enterAlways"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

    <android.support.design.widget.TabLayout
        android:id="@+id/tabs"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:tabMode="fixed"
        app:tabGravity="fill"/>
</android.support.design.widget.AppBarLayout>

<android.support.v4.view.ViewPager
    android:id="@+id/viewpager"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"  />

PS:我仍然是Android開發的初學者,我認為最好在其中使用片段來顯示活動。 (如果我錯了糾正我)

你加入MyNewFragment並給予id來看這是目前在my_newfragment.xml這仍是未知數。 您必須在TwoFragment的布局文件中添加/替換片段,即fragment_two.xml

您的fragment_two.xml應該看起來像

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:gravity="center"
    android:layout_height="match_parent">

    ....

    <fragment
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#b0b0ff"
        android:id="@+id/new_output" />

    ....

</LinearLayout>

mynewfrag_view.xml刪除fragment標簽new_output ,並像上面一樣添加fragment_two.xml ,然后檢查其是否有效。

這無法識別您在TwoFragment類 ft.replace(R.id.new_output, newFrag); onclicklistener中使用的R.id.new_output ft.replace(R.id.new_output, newFrag);

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM