我想创建一个 android 界面,类似于启动器。为此,我需要在屏幕的每一侧制作一个自定义标题栏和 2 个边框。
我的应用程序中有几个活动,我需要在所有活动中都这样做,所以我需要创建独立的布局,一个带有自定义标题栏,另一个带有边框。结果可能是这样的:
这是边框的xml:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<RelativeLayout
android:id="@+id/border_left"
android:layout_width="100dip"
android:layout_height="fill_parent"
android:orientation="vertical"
android:layout_alignParentLeft="true"
android:background="#000000" >
</RelativeLayout>
<RelativeLayout
android:id="@+id/border_right"
android:layout_width="100dip"
android:layout_height="fill_parent"
android:orientation="vertical"
android:layout_alignParentRight="true"
android:background="#000000" >
</RelativeLayout>
这是标题的xml:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/title"
android:layout_width="fill_parent"
android:layout_height="26dip"
android:orientation="horizontal"
android:background="#000000" >
问题是2:
我怎样才能在标题栏(红色方块)的中间放一个标志(图像)?
如何将这 2 个布局插入其他活动?例如,我怎样才能让我的普通主布局包含这两种布局?