ViewGroup与FrameLayout,加载其中的图像

时间:2013-03-29 11:58:20

标签: android layout

我有这种情况。我正在创建自定义GridView。我有一个ScrollView,我在其中使用MyViewGroupMyViewGroup扩展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

提前谢谢。

0 个答案:

没有答案