如何在Android应用程序中实现Navigation Drawer +全新的工具栏?

时间:2014-11-06 10:33:49

标签: android android-fragments navigation-drawer android-5.0-lollipop android-toolbar

我已经开始开发一个Android应用程序,它包含以下内容:

  • MainActivity:扩展FragmentActivity。
  • 几个片段:扩展android.support.v4.app.Fragment每个。

MainActivity从应用程序开始,它有一个ActionBarDrawer(客户端要求实现类似抽屉的菜单)。此外,MainActivity进行片段事务:当单击抽屉中的X选项时,MainActivity将替换并设置所需的片段(应用程序启动时设置默认片段)。

这张照片说明了这一点: screenshoot of my application, with the drawer opened

我的课程:

public class MainActivity extends FragmentActivity {

private DrawerLayout mDrawerLayout;
private ListView mDrawerList;
// that is the one which is deprecated: ActionBarDrawerToggle mDrawerToggle:
private ActionBarDrawerToggle mDrawerToggle;

private CharSequence mDrawerTitle;
private CharSequence mTitle;
private String[] mDrawerMenuTitles;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
...


public class FragmentEuskalmet extends Fragment implements    android.widget.AdapterView.OnItemSelectedListener {

activity_main.xml布局:

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

<!-- The main content view -->
<FrameLayout
    android:id="@+id/content_frame"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

<!-- The navigation drawer -->
<ListView android:id="@+id/left_drawer"
    android:layout_width="240dp"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    android:choiceMode="singleChoice"
    android:divider="@android:color/transparent"
    android:dividerHeight="0dp"
    android:background="#111"/>

drawer_list_item.xml布局:

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/text1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceListItemSmall"
android:gravity="center_vertical"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:textColor="#fff"
android:background="?android:attr/activatedBackgroundIndicator"
android:minHeight="?android:attr/listPreferredItemHeightSmall"/>

我已经意识到,随着Android 5.0的发布,ActionBar已被弃用。所以我的问题如下:如何更改我的应用程序以支持新工具栏,使用新的导航抽屉(替换已弃用的工具栏)并在MainActivity中维护我的Fragment用法(使用FragmentActivity)?

提前感谢您的帮助!

1 个答案:

答案 0 :(得分:3)

Android 5.0中的ActionBar 未被弃用

从Android 5.0(API级别21)开始,操作栏可以由应用程序布局中的任何工具栏小部件表示。

说,要用新的工具栏替换ActionBar,你需要新的appcompat v21

  • 扩展AppCompatActivity而不是FragmentActivity
  • 在您需要
  • 时使用getSupportActionBar()代替getActionBar()
  • 使用继承自 Theme.AppCompat 的主题。(例如Light或NoActionBar)
  • 工具栏视图放入布局

更多信息here:

然后要集成navDrawer,你可以这样做:

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

mDrawerToggle= new ActionBarDrawerToggle(this, mDrawerLayout,mToolbar, R.string.app_name,    
      R.string.app_name);
mDrawerLayout.setDrawerListener(mDrawerToggle);