Android Studio layout-w600dp不适用于横向Nexus 5

时间:2015-02-03 20:50:16

标签: android android-layout android-studio landscape nexus-5

这是我在StackOverflow上的第一个问题=)

我正在使用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

什么可能导致这个问题?

2 个答案:

答案 0 :(得分:2)

你可以重命名&#34; layout-w600dp&#34;到&#34; layout-w595dp&#34;它将适用于Nexus 5。 为了获得更具响应性的设计,您还可以为更大的屏幕创建具有两列以上的布局。

答案 1 :(得分:0)

如果网格视图中有多个列,则必须定义列宽。这是我的一个应用程序的网格视图。

 <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的列。