关闭视图左上角的图标

时间:2012-09-13 04:07:07

标签: android user-interface

这是由photoshop制作的原型UI,您可以看到视图左上方有一个close图标。

enter image description here

我想知道android中是否有任何控件可以实现这个?如果没有,怎么做?

2 个答案:

答案 0 :(得分:2)

不,你没有。要获得此类用户界面,您只需要单独裁剪所有图片,然后使用Adapter并为自定义布局充气。

在您的情况下,您需要创建关闭图标图像,将其放在ImageView中并在任意位置对齐。

答案 1 :(得分:0)

希望这会对你有所帮助

<RelativeLayout
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     android:layout_centerInParent="true"
     android:background="#00000000" >


<RelativeLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_margin="20dp" >

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="fill_parent"
        android:layout_margin="1dp"
        android:background="@drawable/show_alert_round"
        android:layout_height="wrap_content"
        android:src="@drawable/ic_launcher" />

</RelativeLayout>

<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"
    android:background="@drawable/cross_button" />