这是一个由photoshop制作的原型UI,你可以看到close
视图的左上方有一个图标。
我想知道android中是否有任何控件可以实现这个?如果没有,如何制作?
这是一个由photoshop制作的原型UI,你可以看到close
视图的左上方有一个图标。
我想知道android中是否有任何控件可以实现这个?如果没有,如何制作?
不,你没有。要获得这种 UI,您只需分别裁剪所有图像并使用Adapter
和扩展您的自定义布局。
在您的情况下,您需要创建关闭图标图像,将其放入 ImageView 并将其对齐到您想要的任何位置。
希望对你有帮助
<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" />