Android,如何将图像放在另一个图像上?

时间:2012-02-29 05:07:07

标签: android image gridview

在我的项目中,我有一个菜单。设计菜单我想使用gridView。 为简单起见,假设此网格视图只有一个项目。此项目有两个单独的图像(background.png和news.png)和一个文本(例如“NEWS”)。

是否可以在background.png上通过xml或代码映射news.png?

感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

是的,你总是可以使用xml文件中的 FrameLayout 来做到这一点,就像这样。

<FrameLayout android:id="@+id/frameLayout1"
    android:layout_width="fill_parent" android:layout_height="fill_parent"
    xmlns:android="http://schemas.android.com/apk/res/android">
    <ImageView android:id="@+id/imageView1" android:layout_width="fill_parent"
        android:layout_height="fill_parent" android:src="@drawable/background"></ImageView>
    <ImageView android:id="@+id/imageView2" android:layout_width="wrap_content"
        android:layout_gravity="center" android:layout_height="wrap_content"
        android:src="@drawable/news"></ImageView>
    <TextView android:text="NEWS" android:id="@+id/textView1" android:layout_gravity="bottom|center_horizontal"
        android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
</FrameLayout>