Android Studio layout-w600dp 不适用于横向 Nexus 5
Android Studio layout-w600dp doesn't work on landscape Nexus 5
这是我在 Whosebug 上的第一个问题 =)
我正在使用 Android Studio 1.0.2(最新更新),我想创建一个网格布局,在 Nexus 5 纵向上有一列,在 Nexus 5 横向上有两列。 Nexus 5 是 640 x 360 dp,所以我有三个文件夹 "layout" 和 "layout-w600dp" 和 "layout-w600dp-land"(要特别确定)。
我在 "layout" 文件夹中的 "fragment_main.xml" 如下所示:
<FrameLayout 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"
tools:context=".MainActivity$PlaceholderFragment">
<GridView
android:id="@+id/gridview_products"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:numColumns="1"/>
</FrameLayout>
在 "layout-w600dp" 和 "layout-w600dp-land" 文件夹中,唯一的区别是
android:numColumns="2"
在 Android Studio 中,它告诉我使用了 "layout-w600dp-land"。画面在这里:
https://pp.vk.me/c625530/v625530960/19a4d/G7irG51csn8.jpg
在真实设备上,当我旋转屏幕时,它不会变成两列。屏幕在这里:https://pp.vk.me/c625530/v625530960/19a57/mmCdluXWSQw.jpg
什么会导致这个问题?
当网格视图中有多个列时,您必须定义列宽。这是我的一个应用程序的网格视图。
<GridView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/grid1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dp"
android:numColumns="2"
android:columnWidth="100dp"
android:horizontalSpacing="10dp"
android:verticalSpacing="10dp"
android:gravity="center"
android:background="@android:color/transparent"
android:stretchMode="columnWidth" >
</GridView>
如果需要,您还可以使用 android:numColumns="auto_fit" 让它创建尽可能多的列,其大小为 columnWidth。
您只需将 "layout-w600dp" 重命名为 "layout-w595dp" 即可在 Nexus 5 上使用。
要获得响应更快的设计,您还可以为更大的屏幕创建包含两列以上的布局。
这是我在 Whosebug 上的第一个问题 =)
我正在使用 Android Studio 1.0.2(最新更新),我想创建一个网格布局,在 Nexus 5 纵向上有一列,在 Nexus 5 横向上有两列。 Nexus 5 是 640 x 360 dp,所以我有三个文件夹 "layout" 和 "layout-w600dp" 和 "layout-w600dp-land"(要特别确定)。
我在 "layout" 文件夹中的 "fragment_main.xml" 如下所示:
<FrameLayout 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"
tools:context=".MainActivity$PlaceholderFragment">
<GridView
android:id="@+id/gridview_products"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:numColumns="1"/>
</FrameLayout>
在 "layout-w600dp" 和 "layout-w600dp-land" 文件夹中,唯一的区别是
android:numColumns="2"
在 Android Studio 中,它告诉我使用了 "layout-w600dp-land"。画面在这里: https://pp.vk.me/c625530/v625530960/19a4d/G7irG51csn8.jpg 在真实设备上,当我旋转屏幕时,它不会变成两列。屏幕在这里:https://pp.vk.me/c625530/v625530960/19a57/mmCdluXWSQw.jpg
什么会导致这个问题?
当网格视图中有多个列时,您必须定义列宽。这是我的一个应用程序的网格视图。
<GridView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/grid1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dp"
android:numColumns="2"
android:columnWidth="100dp"
android:horizontalSpacing="10dp"
android:verticalSpacing="10dp"
android:gravity="center"
android:background="@android:color/transparent"
android:stretchMode="columnWidth" >
</GridView>
如果需要,您还可以使用 android:numColumns="auto_fit" 让它创建尽可能多的列,其大小为 columnWidth。
您只需将 "layout-w600dp" 重命名为 "layout-w595dp" 即可在 Nexus 5 上使用。 要获得响应更快的设计,您还可以为更大的屏幕创建包含两列以上的布局。