我正在尝试在我的项目中使用支持库中的GridLayout。我所做的就是将它作为Android库添加到我的项目中。我已经创建了一个简单的布局来显示不起作用的内容。
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res/com.example.myapp"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<android.support.v7.widget.GridLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="@dimen/margin"
app:columnCount="3"
app:rowCount="8"
tools:context=".RegistrationActivity" >
<Button
android:id="@+id/activity_registration_company"
app:layout_columnSpan="3"
android:background="@android:color/darker_gray"
android:text="1" />
<Button
android:id="@+id/activity_registration_street"
app:layout_columnSpan="2"
android:background="@android:color/darker_gray"
android:text="2" />
<Button
android:id="@+id/activity_registration_building"
app:layout_columnSpan="1"
android:background="@android:color/darker_gray"
android:text="3" />
</android.support.v7.widget.GridLayout>
以下是我在Eclipse布局编辑器中看到的内容(在设备上相同):
正如您所看到的,GridLayout的内容不占用整个宽度。 Button也不占用跨度定义的空间。有什么想法吗?
答案 0 :(得分:0)
使用
使用android:layout_columnWeight="X"
android:layout:width="0dp"
(X是您希望的任何数字)