我一直在尝试使 ImageView 和 3 个按钮都具有相同的大小(适合父 TableLayout),但对我来说这是不可能的,我希望有人可以帮助我在 .xml 文件中解决这个问题。
这是我试图放在一起的 TableLayout,这是其中的代码:
<TableLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:stretchColumns="*" >
<TableRow
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<ImageView
android:id="@+id/iFoto"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:scaleType="centerCrop"
android:background="#000000"
android:padding="1dp"
android:src="@drawable/i_background" />
<TableLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:stretchColumns="*" >
<TableRow
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<ImageButton
android:id="@+id/button1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:background="@anim/btblue"
style="@style/ButtonText"
android:src="@drawable/ic_launcher" />
</TableRow>
<TableRow
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<ImageButton
android:id="@+id/button2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:background="@anim/btblue"
style="@style/ButtonText"
android:src="@drawable/ic_launcher" />
</TableRow>
<TableRow
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<ImageButton
android:id="@+id/button3"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:background="@anim/btblue"
style="@style/ButtonText"
android:src="@drawable/ic_launcher" />
</TableRow>
</TableLayout>
</TableRow>
</TableLayout>
这是我希望得到的:
有人可以帮我弄这个吗 ?谢谢你。