3

我是 android 新手,正在使用导航抽屉开发一个练习应用程序。我想让主视图成为一个带有 3 个选项卡的寻呼机,并且当用户从左向右滑动时可以显示一个导航抽屉。

这是我的Main.xml代码:

<android.support.v4.widget.DrawerLayout 
    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/main_layout"
    tools:context=".ExampleMain" >

<!-- 
    Main Content place holder
 -->
<FrameLayout
    android:id="@+id/main_content"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>

<!-- 
    Left Drawer main style
 -->
<ListView
    style="@style/HighlightColor"
    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.support.v4.widget.DrawerLayout>

其中<Framelayout>应该包含我在另一个 xml Main_Content.xml中定义的实际主视图

<andriod.support.v4.view.ViewPager
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/main_content_pager"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>

我不确定如何将Main_Content.xmlViewpager放入Main.xml的部分。请提供一些示例代码或一些指针。谢谢<FrameLayout>

4

3 回答 3

4

从技术上讲,您不应该将 ActionBar 选项卡与 NavigationDrawer 一起使用:

“你不应该使用带有操作栏标签的导航抽屉。如果你的目标是类似于 Google Play 音乐的 UI,你应该手动实现标签(并注意它在平板电脑上的外观 - 你不希望完整-width tab bar on tablet)。另外,请务必查看今年 Google I/O 的Android 应用程序设计中的结构,详细了解可用于公开应用程序层次结构的各种界面模式。- Roman Nurik,Android 开发者倡导者@Google

在inflates中使用FragmentTransactionActivityMain.xml

FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
ExampleFragment fragment = new ExampleFragment();
fragmentTransaction.add(R.id.main_content, fragment);
fragmentTransaction.commit();

ExampleFragment将包含onCreateView()膨胀您的 XML 的方法:

@Override public View onCreateView(LayoutInflater layoutInflater, 
                                   ViewGroup container, 
                                   Bundle savedInstanceState) {
    return layoutInflater.inflate(R.layout.Main_Content, container, false);
}
于 2013-11-05T04:54:03.913 回答
1

您可以通过以下方式使用它:

<android.support.v4.widget.DrawerLayout 
        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/main_layout"
        tools:context=".ExampleMain" >

    <!-- 
        Main Content place holder
     -->
    <FrameLayout
        android:id="@+id/main_content"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

    <andriod.support.v4.view.ViewPager
      android:id="@+id/main_content_pager"
      android:layout_width="match_parent"
      android:layout_height="match_parent"/>

    </FrameLayout>

    <!-- 
        Left Drawer main style
     -->
    <ListView
        style="@style/HighlightColor"
        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.support.v4.widget.DrawerLayout>

根据设计,NavigationDrawer 的设计方式是,如果您尝试从屏幕左侧(或右侧)部分的 20dp 边缘滑动,它就会显示出来。

编辑 1: 如果您想将视图放在单独的 xml 中,您可以很好地做到这一点并在运行时添加视图。

编写另一个xml如下: view_pager.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.view.ViewPager
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/pager"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

main_layout.xml

<?xml version="1.0" encoding="utf-8"?>
   <android.support.v4.widget.DrawerLayout 
        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/main_layout" >

    <!-- 
        Main Content place holder
     -->
    <FrameLayout
        android:id="@+id/main_content"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>
    <!-- 
        Left Drawer main style
     -->
    <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.support.v4.widget.DrawerLayout>

然后在您的活动的 onCreate 中,您可以使用以下代码:

@Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main_layout);
                ViewPage pager = (ViewPager) LayoutInflater.from(this).inflate(R.layout.view_pager, null, false);
                ViewGroup container = (ViewGroup) findViewById(R.id.main_content);
                container.addView(pager);
               }

我希望它有帮助!

于 2013-11-05T04:52:15.013 回答
0

您可以通过扩展布局来动态执行此操作,或者如果它是静态布局,则可以使用 include 标记。

如果它是静态的:

<FrameLayout
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent">
<include layout="@layout/your_layout"/>
</FrameLayout>

但是由于您使用的是导航绘图,我希望您需要的是动态的。因此,从代码中,您需要做的是:

private void onNavigationClicked(){
    View v=LayoutInflater.from(this).inflate(R.layout.your_layout,null);
    FrameLayout fl = (FrameLayout)findViewById(R.layout.main_content);
    fl.removeAllViews();
    fl.addView(v);
    fl.invalidate();
}
于 2013-11-05T05:02:16.087 回答