0

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

在此处输入图像描述

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

4

2 回答 2

2

不,你没有。要获得这种 UI,您只需分别裁剪所有图像并使用Adapter和扩展您的自定义布局。

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

于 2012-09-13T04:09:57.470 回答
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" />

于 2012-09-13T04:30:12.037 回答