我一直在开发一个应用程序,我也需要处理它的 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
设置为中心的属性的移动设备的名称。但正如您在下面的屏幕截图中看到的那样,它没有按预期工作:
由于文本是动态的,我应该使用什么来将宽度保持在限制范围内。