3

我一直在开发一个应用程序,我也需要处理它的 UI 内容。

这是我的 XML:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
  <GridLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:columnCount="2" >
    <ImageView />
    <TextView />
    .
    .
  </GridLayout>
</ScrollView>

现在的问题是右列的宽度。它超出了设备的宽度。例如具有android:layout_gravity设置为中心的属性的移动设备的名称。但正如您在下面的屏幕截图中看到的那样,它没有按预期工作:

设备截图

由于文本是动态的,我应该使用什么来将宽度保持在限制范围内。

4

1 回答 1

5

我在使用 GridLayout 时遇到了类似的问题fill_horizontal。我的解决方案是设置android:layout_width="0dp",因此您可能想对第二列中的所有视图进行尝试。

资源

于 2014-02-04T14:27:38.527 回答