これはphotoshopによって作成されたプロトタイプUIclose
であり、ビューの左上にアイコンがあることがわかります。
アンドロイドにこれを実装できるコントロールがあるのだろうか?そうでない場合、それを作る方法は?
これはphotoshopによって作成されたプロトタイプUIclose
であり、ビューの左上にアイコンがあることがわかります。
アンドロイドにこれを実装できるコントロールがあるのだろうか?そうでない場合、それを作る方法は?
いいえ、持っていません。この種の 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" />