我正在尝试创建一个包含7行和7列ImageButtons的表 - 从drawable文件夹添加图像资源的按钮。 问题是我只能看到第一个按钮,其余的按屏幕。如何缩放图像或按钮以便可以在屏幕上查看所有49? 以下是main.xml文件。任何帮助都会很棒!!谢谢!
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TableRow>
<ImageButton
android:id="@+id/r0c0"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/frog"
android:scaleType="centerInside"
/>
<ImageButton
android:id="@+id/r0c1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/frog"
android:scaleType="centerInside"
/>
<!-- 5 more ImageButtons go here -->
</TableRow>
<TableRow>
<ImageButton
android:id="@+id/r1c0"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/frog"
android:scaleType="centerInside"
/>
<ImageButton
android:id="@+id/r1c1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/frog"
android:scaleType="centerInside"
/>
<!-- 5 more ImageButtons go here -->
</TableRow>
<!-- 5 more TableRows go here -->
</TableLayout>
答案 0 :(得分:0)
首先,android:layout_width="wrap_content"
的孩子不需要android:layout_height="wrap_content"
和TableRow
值。
另外,请为fitCenter
尝试centerInside
而不是scaleType
。