我看到TableLayout,GridLayout,GridView ......我已经相当了解它们中的每一个或多或少,但我仍然需要一些帮助。
我有以下FrameLayout。
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clickable="true" />
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right|top"
android:checked="false"
android:clickable="true" />
</FrameLayout>
我想用上面的12个FrameLayouts创建一个4x3表(4行,3列)并考虑到一些方面:
它不可滚动,它将具有相对于屏幕高度的相对尺寸,每个单元格将具有相同的相对尺寸,并且其项目易于操作&#34;#34;操纵&#34 ;
通过操纵我的意思是看看每个单元格上发生的点击并做一些事情。
在我描述的这种情况下,包含那些FrameLayouts的最合适的视图是什么?