我想创建一个简单的旗帜游戏。你得到了国家名称,然后你必须猜出正确的国旗。在我的播放屏幕上,我有一个 TextView 和一个 TableLayout,其中 2 行中有 4 个图像。这些图像是相同的维度。
问题是:TextView “缩小”了第二个 TableRow,因此图像不再同样大。如果我删除 TextView,一切都很好。
我尝试在 Hierachy Viewer 中调试,它告诉我第二个 TableRow 的属性 mMeasuredHeight 的值非常高(16777526)
我的游戏活动 xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="4dp"
tools:context=".PlayTimeModeActivity" >
<TextView
android:id="@+id/tvFlagName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:text="Hello"
android:textSize="50dp" />
<TableLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center_horizontal" >
<TableRow>
<ImageView
android:id="@+id/ivFlag1"
android:layout_margin="4dp"
android:contentDescription="@string/cdFlag1" />
<ImageView
android:id="@+id/ivFlag2"
android:layout_margin="4dp"
android:contentDescription="@string/cdFlag2" />
</TableRow>
<TableRow>
<ImageView
android:id="@+id/ivFlag3"
android:layout_margin="4dp"
android:contentDescription="@string/cdFlag3" />
<ImageView
android:id="@+id/ivFlag4"
android:layout_margin="4dp"
android:contentDescription="@string/cdFlag4" />
</TableRow>
</TableLayout>
</LinearLayout>
您需要更多信息吗?
我想知道这种图像布局是否可以做得更好?
编辑:图像非常高分辨率