我想创建一个这样的容器:
我试过这个:
<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>
这是我的输出:
如何创建阴影边框和圆角?
我希望角落在整个容器周围,而不是分别在每个形状\颜色上。
所以我需要使用“上”和“下”角?