Android开发 头部(head)(需要返回多个Activity)
Posted 彬sir哥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android开发 头部(head)(需要返回多个Activity)相关的知识,希望对你有一定的参考价值。
1.实现:
2.头部布局header.xml代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="#fff6f6f6"
android:gravity="center_vertical"
android:orientation="horizontal">
<ImageButton
android:id="@+id/imagebutton"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:background="@null"
android:contentDescription="返回"
android:onClick="preset_Onclick"
android:scaleType="centerInside"
android:src="@drawable/arrow_left" /><!--注意:头部左边的箭头(arrow_left.png)图标的长宽要一样-->
<View
android:id="@+id/divider1"
android:layout_width="1px"
android:layout_height="match_parent"
android:layout_marginTop="5.0dp"
android:layout_marginBottom="5.0dp"
android:layout_toRightOf="@id/imagebutton"
android:background="#C0C0C0" />
<TextView
android:id="@+id/tv_head_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="标题栏"
android:textColor="#4CAF50"
android:textSize="19sp" />
<View
android:layout_width="match_parent"
android:layout_height="1px"
android:layout_alignParentBottom="true"
android:background="#C0C0C0" />
</RelativeLayout>
3.活动的头部布局代码,直接引用header.xml就即可,如何改,就是用include
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<include
android:id="@+id/aa"
layout="@layout/header" />
</LinearLayout>
以上是关于Android开发 头部(head)(需要返回多个Activity)的主要内容,如果未能解决你的问题,请参考以下文章