5

LinearLayoutこの写真のいいねの周りにタイトルの枠を作りたいです。

レイアウト http://img829.imageshack.us/img829/3461/borderwithtitle.png

私はすでに国境を持っています。
タイトルを追加するにはどうすればよいですか?

.xmldrawableフォルダにファイルを作ってボーダーを作成しました。そこで形状を作成し、線形レイアウトの背景をこの形状に設定しました。

API レベル 8 を使用しています。

4

2 に答える 2

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 は次のような drawablerectangle.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>
于 2013-02-25T07:32:34.803 に答える
0

Android Frame Layout を参照してください。

優れたチュートリアルがここにあるかもしれませんし、開発者ガイドを読みたいかもしれません。

于 2012-11-20T14:37:43.693 に答える