2

我想塑造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>
4

3 回答 3

2

您可以使用图层列表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>
于 2013-04-01T15:54:26.817 回答
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 中用于形状

<?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>
于 2013-02-14T13:58:22.677 回答
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

于 2013-02-14T13:37:58.567 回答