28

コードからフレームを作成しようとしています。これを適用して、外側を塗りつぶし、内側を透明にして丸みを帯びた内側のコーナーを作成できます。中が透明な楕円形の真っ直ぐな長方形のように。画像添付。私はいくつかの形状の組み合わせを試しましたが、オンラインで入手できるものはすべて外側のコーナーを表示します.

ここに画像の説明を入力

中は白ではなく透明にする必要があります。画像はこの投稿から取得されたものですが、ここに示されているソリューションは私が探しているものではありません。9 パッチのドローアブルを使用したくありませんが、コードで作成したいと考えています。

有効な回答のみお願いします。

4

4 に答える 4

59

次の rounded_corner.xml を作成します。

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:bottom="-10dp"
        android:left="-10dp"
        android:right="-10dp"
        android:top="-10dp">
        <shape android:shape="rectangle">
            <stroke
                android:width="10dp"
                android:color="#ffffff" />
            <corners android:radius="20dp" />
        </shape>
    </item>
</layer-list>

フレームを適用するimageViewの下にこれを追加します。

<View
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_alignBottom="@+id/my_image_view"
    android:layout_alignLeft="@id/my_image_view"
    android:layout_alignRight="@+id/my_image_view"
    android:layout_alignTop="@id/my_image_view"
    android:background="@drawable/rounded_corner" />
于 2014-05-28T10:13:29.590 に答える
24

まず、xml layoutdrawable フォルダーに3 つ作成します。

  1. 最初: frame.xml
  2. 2番目: frame_build.xml
  3. 3 番目: red.xml

(この名前は自由に変更できます)、

フレーム.xml:

<?xml version="1.0" encoding="UTF-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:bottom="20dp" android:drawable="@drawable/red" android:top="-25dp" />
    <item android:bottom="15dp" android:drawable="@drawable/frame_build" android:top="5dp" android:left="-5dp" android:right="-5dp" />
</layer-list>

frame_build.xml :

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
    <padding android:left="10dp" android:top="10dp" android:right="10dp" android:bottom="10dp" />
    <corners android:radius="40dp" />
</shape>

red.xml

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
    <stroke android:width="40dp" android:height="40dp" android:color="#B22222" />
    <padding android:left="8dp" android:top="-1dp" android:right="8dp" android:bottom="9dp" />
    <corners android:radius="-10dp" />
</shape>

最後に、次のようにビューまたはレイアウトを Frame XML に参照します。

  android:background="@drawable/frame"

これはテストされ、以下の画像のように出力されます。

出力画像

この助けを願っています。

于 2012-06-27T13:23:00.053 に答える