AndroidDrawerLayout+fragment布局实现左右侧滑

http://www.it165.net/pro/html/201402/9757.html

  • 技术要点: android.support.v4.widget.DrawerLayout

    打开抽屉: DrawerLayout .openDrawer();

    关闭抽屉:DrawerLayout.closeDrawer( );

    为slidingLayout设置一个layout_grative属性


    中间\ 左侧\ 右侧 \

    点击first \ 点击second \



    代码:

    activity_main.xml

    01. <android.support.v4.widget.DrawerLayout
    03. android:id="@+id/drawer_layout"
    04. android:layout_width="fill_parent"
    05. android:layout_height="fill_parent" >
    06.  
    07. <FrameLayout
    08. android:id="@+id/fragment_layout"
    09. android:layout_width="fill_parent"
    10. android:layout_height="fill_parent" >
    11. </FrameLayout>
    12. <RelativeLayout
    13. android:id="@+id/menu_layout_left"
    14. android:layout_width="300dp"
    15. android:layout_height="match_parent"
    16. android:layout_gravity="left"
    17. android:background="@android:color/holo_red_light">
    18. <ListView
    19. android:id="@+id/menu_listView_l"
    20. android:layout_width="match_parent"
    21. android:layout_height="match_parent" >
    22. </ListView>
    23. </RelativeLayout>
    24. <RelativeLayout
    25. android:id="@+id/menu_layout_right"
    26. android:layout_width="300dp"
    27. android:layout_height="match_parent"
    28. android:layout_gravity="right"
    29. android:background="#ff333333">
    30. <ListView
    31. android:id="@+id/menu_listView_r"
    32. android:layout_width="match_parent"
    33. android:layout_height="match_parent" >
    34. </ListView>
    35. </RelativeLayout>
    36. </android.support.v4.widget.DrawerLayout>


    first.xml

    01. <LinearLayout
    03. android:id="@+id/drawer_layout"
    04. android:layout_width="match_parent"
    05. android:layout_height="match_parent"
    06. android:orientation="vertical" >
    07.  
    08. <TextView
    09. android:id="@+id/textView1"
    10. android:layout_width="wrap_content"
    11. android:layout_height="wrap_content"
    12. android:text="first"
    13. android:textAppearance="?android:attr/textAppearanceLarge" />
    14.  
    15. </LinearLayout>

    second.xml

    01. <LinearLayout
    03. android:id="@+id/drawer_layout"
    04. android:layout_width="match_parent"
    05. android:layout_height="match_parent"
    06. android:orientation="vertical" >
    07.  
    08. <TextView
    09. android:id="@+id/textView1"
    10. android:layout_width="wrap_content"
    11. android:layout_height="wrap_content"
    12. android:text="second"
    13. android:textAppearance="?android:attr/textAppearanceLarge" />
    14.  
    15. </LinearLayout>

    MainActivity.java

    001. package org.busyboy.drawerlayout;
    002.  
    003.  
    004. import com.example.testdrawerlayout.R;
    005.  
    006.  
    007. import android.os.Bundle;
    008. import android.app.Activity;
    009. import android.support.v4.app.Fragment;
    010. import android.support.v4.app.FragmentActivity;
    011. import android.support.v4.app.FragmentTransaction;
    012. import android.support.v4.widget.DrawerLayout;
    013. import android.view.Gravity;
    014. import android.view.View;
    015. import android.widget.AdapterView;
    016. import android.widget.ArrayAdapter;
    017. import android.widget.ListView;
    018. import android.widget.RelativeLayout;
    019. import android.widget.AdapterView.OnItemClickListener;
    020. import android.widget.TextView;
    021. public class MainActivity extends FragmentActivity
    022. {
    023.  
    024. public static final String[] TITLES = { "First""Second" };
    025. private DrawerLayout mDrawer_layout;//DrawerLayout容器
    026. private RelativeLayout mMenu_layout_left;//左边抽屉
    027. private RelativeLayout mMenu_layout_right;//右边抽屉
    028.  
    029. @Override
    030. protected void onCreate(Bundle savedInstanceState)
    031. {
    032. super.onCreate(savedInstanceState);
    033. setContentView(R.layout.activity_main);
    034.  
    035. mDrawer_layout = (DrawerLayout) findViewById(R.id.drawer_layout);
    036. mMenu_layout_left = (RelativeLayout) findViewById(R.id.menu_layout_left);
    037. mMenu_layout_right = (RelativeLayout) findViewById(R.id.menu_layout_right);
    038. ListView menu_listview_l = (ListView) mMenu_layout_left.findViewById(R.id.menu_listView_l);
    039. ListView menu_listview_r = (ListView) mMenu_layout_right.findViewById(R.id.menu_listView_r);
    040.  
    041. menu_listview_l.setAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_expandable_list_item_1, TITLES));
    042. menu_listview_r.setAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_expandable_list_item_1, TITLES));
    043.  
    044. //监听菜单
    045. menu_listview_l.setOnItemClickListener(new DrawerItemClickListenerLeft());
    046. menu_listview_r.setOnItemClickListener(new DrawerItemClickListenerRight());
    047. }
    048. /**
    049. * 左侧列表点击事件     
    050. * @author busy_boy
    051. *
    052. */
    053. public class DrawerItemClickListenerLeft implements OnItemClickListener
    054. {
    055. @Override
    056. public void onItemClick(AdapterView<?> parent, View view, int position, long id)
    057. {
    058. FragmentTransaction ft = getSupportFragmentManager().beginTransaction();
    059. Fragment fragment = null;
    060.  
    061. //根据item点击行号判断启用哪个Fragment
    062. switch (position)
    063. {
    064. case 0:
    065. fragment = new FirstFragment();
    066. break;
    067. case 1:
    068. fragment = new SecondFragment();
    069. break;
    070. default:
    071. break;
    072. }
    073. ft.replace(R.id.fragment_layout, fragment);
    074. ft.commit();
    075. mDrawer_layout.closeDrawer(mMenu_layout_left);//关闭mMenu_layout
    076. }
    077.  
    078. }
    079. /**
    080. * 右侧列表点击事件     
    081. * @author busy_boy
    082. *
    083. */
    084. private class DrawerItemClickListenerRight implements OnItemClickListener {
    085. @Override
    086. public void onItemClick(AdapterView<?> parent, View view, int position, long id)
    087. {
    088. FragmentTransaction ft = getSupportFragmentManager().beginTransaction();
    089. Fragment fragment = null;
    090.  
    091. //根据item点击行号判断启用哪个Fragment
    092. switch (position)
    093. {
    094. case 0:
    095. fragment = new FirstFragment();
    096. break;
    097. case 1:
    098. fragment = new SecondFragment();
    099. break;
    100. default:
    101. break;
    102. }
    103. ft.replace(R.id.fragment_layout, fragment);
    104. ft.commit();
    105. mDrawer_layout.closeDrawer(mMenu_layout_right);//关闭mMenu_layout
    106. }
    107. }
    108. }

    FirstFragment.java

    01. package org.busyboy.drawerlayout;
    02.  
    03. import com.example.testdrawerlayout.R;
    04.  
    05. import android.os.Bundle;
    06. import android.support.v4.app.Fragment;
    07. import android.view.LayoutInflater;
    08. import android.view.View;
    09. import android.view.ViewGroup;
    10.  
    11. public class FirstFragment extends Fragment {
    12.  
    13. @Override
    14. public View onCreateView(LayoutInflater inflater, ViewGroup container,
    15. Bundle savedInstanceState) {
    16. return inflater.inflate(R.layout.first, null);
    17. }
    18.  
    19. }

    SecondFragment.java

    01. package org.busyboy.drawerlayout;
    02.  
    03. import com.example.testdrawerlayout.R;
    04.  
    05. import android.os.Bundle;
    06. import android.support.v4.app.Fragment;
    07. import android.view.LayoutInflater;
    08. import android.view.View;
    09. import android.view.ViewGroup;
    10.  
    11. public class SecondFragment extends Fragment {
    12.  
    13. @Override
    14. public View onCreateView(LayoutInflater inflater, ViewGroup container,
    15. Bundle savedInstanceState) {
    16. return inflater.inflate(R.layout.second, null);
    17. }
    18.  
    19. }

    android.support.v4.widget.DrawerLayout 官方文档位置:http://developer.android.com/reference/android/support/v4/widget/DrawerLayout.html


  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
A ViewPager is a layout manager that allows the user to swipe left and right to move between pages of data. In the case of a Fragment-based ViewPager, each page is represented by a Fragment. To use a ViewPager with Fragments, you need to do the following: 1. Create a layout file that contains a ViewPager element. 2. Create a Fragment class that will represent a single page in the ViewPager. This class should inflate a layout that contains any UI elements you want to display on the page. 3. Create an adapter class that extends FragmentPagerAdapter or FragmentStatePagerAdapter. This adapter will be responsible for creating and managing the Fragments that are displayed in the ViewPager. 4. Set the adapter on the ViewPager. Here's an example of how to create a Fragment-based ViewPager: 1. Create a layout file that contains a ViewPager element. For example: ``` <android.support.v4.view.ViewPager android:id="@+id/view_pager" android:layout_width="match_parent" android:layout_height="match_parent" /> ``` 2. Create a Fragment class that will represent a single page in the ViewPager. For example: ``` public class MyFragment extends Fragment { @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View view = inflater.inflate(R.layout.fragment_my, container, false); // TODO: Set up UI elements in the layout return view; } } ``` 3. Create an adapter class that extends FragmentPagerAdapter or FragmentStatePagerAdapter. For example: ``` public class MyPagerAdapter extends FragmentPagerAdapter { public MyPagerAdapter(FragmentManager fm) { super(fm); } @Override public Fragment getItem(int position) { // TODO: Return a new instance of MyFragment for the given position return null; } @Override public int getCount() { // TODO: Return the total number of pages return 0; } } ``` 4. Set the adapter on the ViewPager in your Activity or Fragment. For example: ``` ViewPager viewPager = findViewById(R.id.view_pager); MyPagerAdapter adapter = new MyPagerAdapter(getSupportFragmentManager()); viewPager.setAdapter(adapter); ``` That's it! You should now have a functioning Fragment-based ViewPager. Of course, you'll need to fill in the TODOs in the code snippets above to actually display content on the pages.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值