これは私の最初の質問です。間違った方法で質問している場合は、ガイドしてください。表を使用して、ゲーム内の画像、タイトル、簡単な説明を持つキャラクターの数を表示したいと考えています。キャラクターをクリックすると、ユーザーは別のビューに転送され、そこでキャラクターに関するより詳細な情報を見ることができます。
質問する
40 次
1 に答える
1
Assumed as your layout may contain TextView(Title)
in First Row of Table
with ImageView(Your Picture)
and TextView(Brief Description)
. You can use android:weightSum
and android:layout_weight
as per the requirement of your TableRow
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<TableLayout
android:layout_height="fill_parent"
android:layout_width="wrap_content"
android:weightSum="3"
>
<TableRow
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:layout_weight="1"
>
<TextView
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:layout_span="2"
android:text="Title"
/>
</TableRow>
<TableRow
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:layout_weight="2"
>
<ImageView
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:src="drawable/...png"
/>
<TextView
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:text="Brief Description"
/>
</TableRow>
</TableLayout>
</LinearLayout>
于 2013-09-07T06:09:39.763 に答える