如何在android中设置带圆角的阴影边框(仅使用开源)

时间:2015-08-30 13:33:58

标签: java android android-layout layout

我想创建一个这样的容器:

enter image description here

我试过这个:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
    android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:orientation="vertical"
    tools:context=".MainActivity$PlaceholderFragment"
    android:weightSum="1">



    <ImageView
        android:layout_width="match_parent"
        android:layout_height="100dip"
        android:src="@android:drawable/alert_dark_frame"
        android:id="@+id/textView1"
        android:gravity="center"
        android:background="#152"/>

    <TextView
        android:layout_width="match_parent"
        android:layout_height="10dip"
        android:text="New Text"
        android:textColor="#FFFFFF"
        android:id="@+id/textView2"
        android:background="#120"
        android:gravity="center"
        android:layout_weight="0.07" />

    <TextView
        android:layout_width="match_parent"
        android:layout_height="30dip"
        android:text="--"
        android:textSize="30dp"
        android:id="@+id/textView3"
        android:gravity="center"
        android:layout_weight="0.88" />



</LinearLayout>

这是我的输出:

enter image description here

如何创建阴影边框和圆角?

我希望角落在整个容器周围,而不是分别在每个形状\颜色上。

所以我需要使用“上”和“下”角?

1 个答案:

答案 0 :(得分:0)

您可以尝试使用库来创建带阴影的漂亮布局。 试试这个here