如何在android中自定义Header

时间:2013-07-24 22:28:27

标签: android

我想在活动标题中显示以下图片:

enter image description here 图像只是黑色部分。正确的部分应该是标题背景。并且应删除标题和正文之间的分隔符。

我怎样才能做到这一点?

我需要的总变化:

1. Remove the divider between header and body
2. Change the background color of header to blue
3. Set an background image on the left side of the header

1 个答案:

答案 0 :(得分:1)

如果您不需要使用任何选项菜单或任何其他actionBarSherlock功能,则不需要此库。您可以将任何主题与 NoTitleBar 一起使用,并创建自定义RelativeLayout来创建标题。

<强> styles.xml

<style name="AppTheme" parent="android:Theme.Light.NoTitleBar">
 <!--Anything -->
</style>

您的layout.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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/header"
        android:layout_width="match_parent"
        android:layout_height="50dip"
        android:background="#6ccff6">

        <ImageView
            android:id="@+id/logo"
            android:adjustViewBounds="true"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/abs_bg" />

        <TextView
            android:id="@+id/date"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_centerVertical="true"
            android:layout_marginRight="10dp"
            android:textColor="@android:color/white"
            android:text="July 25"
            android:textAppearance="?android:attr/textAppearanceMedium" />

    </RelativeLayout>
    <!-- Put any other layout/view here -->

</LinearLayout>