Android - 导航抽屉片段 [英] Android - Navigation drawer fragments

查看:44
本文介绍了Android - 导航抽屉片段的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经在我的安卓应用中实现了导航抽屉.但现在我希望能够在用户单击导航栏中的任何列表项时使用片段更改布局.这是我到目前为止所得到的:

I have implemented navigation drawer in my android app. but now I want to be able to change the layout using fragments when the user clicks any list item in the navigation bar. Here is what I have got so far:

XML

<android.support.v4.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/drawer_layout"
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <FrameLayout
        android:id="@+id/content_frame"
        android:layout_width="match_parent"
        android:background="#000000"
        android:layout_height="match_parent" >       
    </FrameLayout>

    <ListView android:id="@+id/left_drawer"
        android:layout_width="220dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:choiceMode="singleChoice"
        android:divider="@android:color/transparent"
        android:dividerHeight="0dp"
        android:background="#111"/>
</android.support.v4.widget.DrawerLayout>

Java 文件

public class MainActivity extends Activity {
final String[] data ={"one","two","three"};

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

    ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, data);

    final DrawerLayout drawer = (DrawerLayout)findViewById(R.id.drawer_layout);
    final ListView navList = (ListView) findViewById(R.id.left_drawer);
    navList.setAdapter(adapter);
    navList.setOnItemClickListener(new AdapterView.OnItemClickListener(){
        @Override
        public void onItemClick(AdapterView<?> parent, View view, final int pos,long id){
            drawer.setDrawerListener( new DrawerLayout.SimpleDrawerListener(){
                @Override
                public void onDrawerClosed(View drawerView){
                    super.onDrawerClosed(drawerView);

                }
            });
            drawer.closeDrawer(navList);
        }
    });
  }
}

使用上面的代码,我在我的应用程序中实现了导航抽屉,我在导航抽屉中看到了一个"、两个"和三个"列表项,但是当我点击它们时,除了抽屉关闭之外没有任何反应.所以,我的问题是:如何将片段功能添加到上面给定的代码中?

Using the above code, I implemented navigation drawer in my app and I see "one", "two" and "Three" list items in the navigation drawer but nothing happens when I click on them except the drawer closes. So, my question is : How do I add the fragment functionality to the above given code?

我是初学者.提前致谢!

I am beginner. Thanks in advance!

推荐答案

点击有

  selectItem(pos);

然后

public void selectItem(int position)
{
     switch(position)
     {
          case 0:
                     // fragment1
                     // use fragment transaction and add the fragment to the container
                     FragmentManager fragmentManager = getFragmentManager()
                     FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();   
                     Fragment1 fragment = new Fragment1();
                     fragmentTransaction.add(R.id.content_frame, fragment);
                     fragmentTransaction.commit();

          break;
          case 1:
                     // fragment2
          break; 
          case 2:
                     // fragment2
          break;
     } 
}

这篇关于Android - 导航抽屉片段的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆