如何为Android创建响应式布局,其中我在纵向模式下有一个导航抽屉,在横向模式下有2列?
我不想使用库,只需要基本的Android Stuff ......
我尝试使用Fragments for Navigation和'layout'和'layout-land'中的2种不同布局。
风景:
<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"
tools:context="com.fun.store.test.ActivityMain">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="3">
<fragment android:id="@+id/navigation_drawer"
android:layout_weight="2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="start" />
<FrameLayout
android:id="@+id/container"
android:layout_weight="1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:name="com.fun.store.test.NavigationDrawerFragment"/>
</LinearLayout>
和肖像:
<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"
tools:context="com.fun.store.test.ActivityMain">
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<fragment android:id="@+id/navigation_drawer"
android:layout_width="@dimen/navigation_drawer_width"
android:layout_height="match_parent"
android:layout_gravity="start"
android:name="com.fun.store.test.NavigationDrawerFragment" />
</android.support.v4.widget.DrawerLayout>
但由于抽屉......它不起作用......
有没有任何示例如何做到这一点?