[android] LinearLayout에 모서리 반경을 적용하는 방법

테두리가 둥근 레이아웃을 만들고 싶습니다. 에 특정 크기의 반경을 어떻게 적용 할 수 LinearLayout있습니까?



답변

드로어 블 폴더에 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>

이것이 제가 보통 앱에서하는 일입니다. 도움이 되었기를 바랍니다….


답변

당신은 사용하는 것이 모양 드로어 블을 레이아웃의 배경으로하고 CornerRadius를 설정합니다.
자세한 자습서는 이 블로그확인하십시오.


답변

나열한 것

<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>


답변

프로그래밍 방식으로 반경이있는 배경을 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());


답변