如何给LinearLayout背景图像赋予形状?

时间:2013-02-14 13:13:16

标签: android android-linearlayout shape

我想将形状提供给LinearLayout's backgroundimage。我正在使用以下xml。 但只显示曲线时不显示图像。

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
    <corners android:radius="7dp" />
    <stroke android:width="1dp"/>
    <item>
      <bitmap android:src="@drawable/locationlable" />
    </item>
</shape>

3 个答案:

答案 0 :(得分:2)

您可以使用layer-list drawable

像这样:

<?xml version="1.0" encoding="utf-8"?>
<layer-list
    xmlns:android="http://schemas.android.com/apk/res/android" >
    <item
        android:drawable="@[package:]drawable/drawable_resource"
        android:id="@[+][package:]id/resource_name"
        android:top="dimension"
        android:right="dimension"
        android:bottom="dimension"
        android:left="dimension" />
</layer-list>

答案 1 :(得分:1)

试试这个

在您的布局中

    <FrameLayout 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:orientation="vertical" 
    android:background="#FFF">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_margin="5dip"
        android:background="@drawable/background"
        android:orientation="vertical" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@xml/shape_round_rect"
        android:orientation="vertical" />

</FrameLayout>

&安培;在你的xml for shape

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle" >

    <corners android:radius="15dip" />

    <stroke
        android:width="5dip"
        android:color="#FFF" />

</shape>

答案 2 :(得分:0)

如果你想绘制圆形,那么你会使用不同的形状:

android:shape="ring" 

如果你想画一个矩形,那么使用下面的代码:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >

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

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


 </shape>

有关详细信息,请访问此链接http://developer.android.com/guide/topics/resources/drawable-resource.html#Shape