LinearLayout
この写真のいいねの周りにタイトルの枠を作りたいです。
レイアウト http://img829.imageshack.us/img829/3461/borderwithtitle.png
私はすでに国境を持っています。
タイトルを追加するにはどうすればよいですか?
.xml
drawableフォルダにファイルを作ってボーダーを作成しました。そこで形状を作成し、線形レイアウトの背景をこの形状に設定しました。
API レベル 8 を使用しています。
LinearLayout
この写真のいいねの周りにタイトルの枠を作りたいです。
レイアウト http://img829.imageshack.us/img829/3461/borderwithtitle.png
私はすでに国境を持っています。
タイトルを追加するにはどうすればよいですか?
.xml
drawableフォルダにファイルを作ってボーダーを作成しました。そこで形状を作成し、線形レイアウトの背景をこの形状に設定しました。
API レベル 8 を使用しています。
@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>
Android Frame Layout を参照してください。
優れたチュートリアルがここにあるかもしれませんし、開発者ガイドを読みたいかもしれません。