自定义标题与图像

时间:2010-01-18 15:20:08

标签: android window titlebar

我通过禁用标准版本并自行管理所有内容来为活动创建自定义标题。我想知道是否可以根据我的需要替换/主题标题。

我可以通过更改windowXYZStyle项目来自定义大小,背景图像和文本。

我唯一找不到的东西 - 我怎么能添加图片而不是文字。 我试过requestWindowFeature(Window.FEATURE_CUSTOM_TITLE) 并分配自定义布局 - 但它似乎不起作用。

编辑:以下是测试建议的报告,代码如下 - 结果 - 图片视图未显示。

活动

public class SettingsActivity extends PreferenceActivity  {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
        getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.custom_title);
        super.onCreate(savedInstanceState);
        addPreferencesFromResource(R.xml.settings);

    }
}

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:paddingLeft="5dip"
    android:background="@drawable/titlebar_bg"
    android:layout_gravity="left|center"
>
    <ImageView
        android:id="@+id/logo"
        android:src="@drawable/title_logo"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

</LinearLayout>

4 个答案:

答案 0 :(得分:35)

可以设置自己的自定义标题布局,但执行顺序很重要。您必须按此顺序执行操作:

requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.my_layout);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.my_custom_title);

此外,您可能需要增加标题的大小;如果不这样做,那么您的自定义布局的底部可能会被您的活动覆盖。您可以通过添加指定标题大小的主题来更改大小。这将进入值XML文件:

<resources>
    <style name="LargeTitleTheme">
        <item name="android:windowTitleSize">40dip</item>
    </style>
</resources>

然后,您需要在AndroidManifest.xml中为您的Activity(或应用程序,如果您希望整个应用程序具有此自定义标题栏)设置主题:

<activity android:name=".MyCustomTitleActivity" android:theme="@style/LargeTitleTheme" />

答案 1 :(得分:7)

您可以随时使用:

requestWindowFeature(Window.FEATURE_NO_TITLE);

然后在“活动视图”中创建自己的标题栏。

答案 2 :(得分:1)

您确定需要在标题中使用图片而不是仅将其组合为背景图片并将标题留空吗?使用NinePatch图像,我希望无论设备如何,您都可以获得看起来不错的效果吗?

答案 3 :(得分:1)

我使用以下代码使自定义标题适合屏幕

<ImageView
    android:id="@+id/header_img"
    android:src="@drawable/header_img"
    android:layout_width="700dip"
    android:layout_height="70dip" />