我是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.xml 中的Viewpager
放入 Main.xml 中的<FrameLayout>
部分。请提供一些示例代码或一些指针。谢谢
答案 0 :(得分:4)
从技术上讲,你不应该在NavigationDrawer中使用ActionBar标签:
“你不应该使用带有操作栏标签的导航抽屉。如果你的目标是使用类似于Google Play音乐的用户界面,你应该手动实现标签(并注意这在平板电脑上看起来如何 - 你不要'我想要平板电脑上的全宽标签栏。还要确保查看今年Google I / O的Structure in Android App Design会话,详细了解可用于展示应用层次结构的各种界面模式。“ - Roman Nurik, Android Developer Advocate @ Google
在Activity
Main.xml
中使用FragmentTransaction FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
ExampleFragment fragment = new ExampleFragment();
fragmentTransaction.add(R.id.main_content, fragment);
fragmentTransaction.commit();
:
ExampleFragment
onCreateView()
将包含将Inflate您的XML的方法@Override public View onCreateView(LayoutInflater layoutInflater,
ViewGroup container,
Bundle savedInstanceState) {
return layoutInflater.inflate(R.layout.Main_Content, container, false);
}
:
{{1}}
答案 1 :(得分: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: 如果您想将视图放在单独的xmls中,您可以很好地执行此操作并在运行时添加视图。
写下另一个xmls,如下所示: 的 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);
}
我希望它有帮助!
答案 2 :(得分: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();
}