2

这是我在 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

什么会导致这个问题?

4

2 回答 2

2

您只需将“layout-w600dp”重命名为“layout-w595dp”,它将在 Nexus 5 上运行。为了获得更具响应性的设计,您还可以为更大的屏幕创建包含两列以上的布局。

于 2015-02-04T01:02:03.450 回答
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 的列。

于 2015-02-03T21:06:07.310 回答