この種のカスタムタイトルバーをAndroidアプリケーションに含めたいのですが。
- カスタムタイトルバー
- 2つの標準ボタンで、1つは左揃え(A)、もう1つは右揃え(C)
- 中央のクリック可能なロゴ(B)
- このロゴがタイトルバーを超え、コンテンツが重なっている
(A)または(C)をクリックすると、アクティビティが開始されます。(B)をクリックすると、小さなメニューが表示され、最終的に他のアクティビティが開始されます。
これをAndroidでどのように実現できるか知っていますか?
この種のカスタムタイトルバーをAndroidアプリケーションに含めたいのですが。
(A)または(C)をクリックすると、アクティビティが開始されます。(B)をクリックすると、小さなメニューが表示され、最終的に他のアクティビティが開始されます。
これをAndroidでどのように実現できるか知っていますか?
これを ActionBar で直接実行できるかどうかはわかりませんが、RelativeLayout を使用してバーを上部にバインドできます。
何かのようなもの
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<RelativeLayout
android:id="@+id/myBar"
android:layout_width="fill_parent"
android:layout_height="50dp"
android:layout_alignParentTop="true"
android:orientation="vertical" >
<-- All the stuff to design the bar -->
</RelativeLayout>
</RelativeLayout>
さらに、標準のタイトル バーを削除して、タイトルのないテーマを使用することもできます。
<activity android:theme="@android:style/Theme.Black.NoTitleBar">
PS: 素敵な絵。
これを試してみてください。 と を使用Relative layout
して Framelayout
います。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<RelativeLayout
android:id="@+id/parent_linear"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:text="Button1" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:text="Button2" />
</RelativeLayout>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/parent_linear" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book" />
</RelativeLayout>
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true" >
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="80dip"
android:background="@drawable/ic_launcher" />
</FrameLayout>