LinearLayoutにコーナー半径を適用する方法


回答:


278

ドローアブルフォルダーにXMLファイルを作成できます。たとえば、shape.xml

shape.xml

<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle"   >

    <solid
        android:color="#888888" >
    </solid>

    <stroke
        android:width="2dp"
        android:color="#C4CDE0" >
    </stroke>

    <padding
        android:left="5dp"
        android:top="5dp"
        android:right="5dp"
        android:bottom="5dp"    >
    </padding>

    <corners
        android:radius="11dp"   >
    </corners>

</shape>

<corner>タグは、特定の質問のためです。

必要に応じて変更します。

そしてあなたの中でwhatever_layout_name.xml

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:layout_margin="5dp"
    android:background="@drawable/shape"    >
</LinearLayout>

これは私のアプリで通常行うことです。お役に立てれば....


このxmlで背景画像を設定する方法
vignesh

1
@vignesh:どのドローアブルとどこに設定しますか?あなたが意味する場合<shape>の例を、それがすでにここレイアウトXMLに設定されている:android:background="@drawable/shape"
シッダールタレレ

3
この線形レイアウトに既に背景画像があり、コーナー半径を持たせたい場合はどうなりますか?あなたのコードでは、linearLayoutの背景プロパティがshape.xmlで設定されているため、背景画像を設定できません
newton_guima

@MrAppleBR:背景画像を設定できません:正解です。しかし、質問の文脈では、OPにはこれが有効なユースケースがありました。あなたが言及するユースケースでは、これはあなたが行くべきものではありません。
Siddharth Lele 2013

@SiddharthLele何にしようかな?少しの情報源、あるいはリンクで説明できますか?ありがとう!
newton_guima 2013


8

レイアウト

<LinearLayout 
    android:id="@+id/linearLayout"
    android:layout_width="300dp"
    android:gravity="center"
    android:layout_height="300dp"
    android:layout_centerInParent="true"
    android:background="@drawable/rounded_edge">
 </LinearLayout>

描画可能なフォルダーrounded_edge.xml

<shape 
xmlns:android="http://schemas.android.com/apk/res/android">
    <solid 
        android:color="@android:color/darker_gray">
    </solid>
    <stroke 
         android:width="0dp" 
         android:color="#424242">
    </stroke>
    <corners 
         android:topLeftRadius="100dip"
         android:topRightRadius="100dip"
         android:bottomLeftRadius="100dip"
         android:bottomRightRadius="100dip">
    </corners>
</shape>

2

これを試してみてください。プログラムで半径の背景をLinearLayoutまたは任意のビューに設定します。

 private Drawable getDrawableWithRadius() {

    GradientDrawable gradientDrawable   =   new GradientDrawable();
    gradientDrawable.setCornerRadii(new float[]{20, 20, 20, 20, 20, 20, 20, 20});
    gradientDrawable.setColor(Color.RED);
    return gradientDrawable;
}

LinearLayout layout = new LinearLayout(this);
layout.setBackground(getDrawableWithRadius());
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.