我想添加滑动抽屉到操作栏和,标签小工具的应用程序。
我使用了Creating a Navigation Drawer
创建导航抽屉的指南。我试着将选项卡小部件添加到其中。但我不能。
有没有人可以帮我在操作栏后添加标签小工具?
就像这样。
这是xml文件。
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
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"/>
</android.support.v4.widget.DrawerLayout>
如何为此添加选项卡小部件作为提及布局?
https://stackoverflow.com/questions/20853317
复制相似问题