与LinearLayout周围的标题边界

时间:2012-11-20 14:06:15

标签: android border android-linearlayout shape

我想在LinearLayout周围创建一个标题边框,如图所示。

layout http://img829.imageshack.us/img829/3461/borderwithtitel.png

我已经有了边框 如何添加标题?

我通过在drawable文件夹中创建.xml文件来创建边框。在那里我做了一个形状,然后我将线性布局的背景设置为这个形状。

我正在使用API​​ Level 8。

2 个答案:

答案 0 :(得分:1)

您可能需要查看Android Frame Layout。

可能会找到一个好的教程 here ,或者您可能想要阅读开发 guides

答案 1 :(得分:1)

根据@ Radu的回答,你可以看到一个例子:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" 
android:color="#000000">
<View
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/rectangle"
    android:layout_margin="20dp"
    />
<RelativeLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <TextView 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:background="#000000"
        android:layout_marginTop="10dp"
        android:text="TITLE!"
        android:textColor="#ffffff"/>
</RelativeLayout>

</FrameLayout>

@ drawable / rectangle在一个drawable rectangle.xml文件中,如下所示:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" 
    android:shape="rectangle">
<solid android:color="@android:color/transparent"/>
<stroke  android:width="2dip" android:color="#ffffff"/>  
</shape>