丸い形の画像ボタンを取得しようとしました。しかし、それは正方形の背景を持つ円形のイメージを表示していますが、私はバックグラウンドのないイメージだけが必要です。 round_image.XMLもバックグラウンド描画可能ファイルとして使用しましたが、動作しません。アンドロイドスタジオでラウンド画像ボタンを取得する方法
<ImageButton
android:id="@+id/imageButton1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentTop="true" android:layout_centerHorizontal="true" android:src="@drawable/sliderr" android:background="@drawable/round_image"/>
round_image.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"android:shape="oval">
<gradient android:startColor="#50d050
android:endColor="#008000" android:angle="270"/>
<stroke
android:width="1px"
android:color="#000000"/>
</shape>
のこのコーナーは、あなたがこの1 http://stackoverflow.com/を試してみました
menu.xml質問/ 9884202 /カスタムサークルボタン –
うん!しかし、私は使用していない状態を使用していませんでした。私はセレクタを使用しようとしました。 –
Possilble複製:http://stackoverflow.com/questions/21397115/rounded-image-button-android –