我有这种情况。我正在创建自定义GridView。我有一个ScrollView,我在其中使用MyViewGroup
,MyViewGroup
扩展ViewGroup
。我想加载图片。对于每个图像,我使用一个单元格,RelativeLayout
并且其中包含ImageView。喜欢这个
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="fitXY"
android:src="@drawable/ic_launcher" />
问题是正确加载了单元格,但未加载图像。但是,如果我从MyViewGroup
而不是FrameLayout
延伸ViewGroup
,那么它可以正常工作。但是我必须使用ViewGroup
而不是FrameLayout
我仅覆盖OnLayout
的{{1}}。
所以我的问题是如何使用MyViewGroup
正确加载图片,ViewGroup
具有哪些属性,哪些没有FrameLayout
?
提前谢谢。