1

我想创建一个 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 个布局插入其他活动?例如,我怎样才能让我的普通主布局包含这两种布局?

4

1 回答 1

0

第二个问题的答案:将布局包含到另一个布局中:

<include
    layout = "@layout/custom_tittlebar" >
</include>

我仍在与标题栏作斗争,我想以这种方式放置图像,我在想这是否是最好的方式,或者我必须创建一个带有 Photoshop 设置徽标的图像,然后将其设置为布局中的背景。

于 2013-10-09T12:54:50.510 回答