私は、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
Centerとして設定されているモバイルの名前。しかし、下のスクリーンショットでわかるように、期待どおりに機能していません。
テキストは動的であるため、幅を制限内に保つために何を使用する必要がありますか。