您好我想在android中的活动标题旁边放置按钮。我可以使用setTitle()更改文本,但我没有找到任何允许将按钮放在Activity标题旁边的内容。我使用的是android 4.0.3。有人能帮助我吗?
答案 0 :(得分:6)
在项目名称topbar.xml中创建xml文件
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="40dp"
android:orientation="vertical"
android:background="@android:color/white">
<TextView
android:id="@+id/title_txt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="MyTitle: NameOfUser"
android:layout_centerVertical="true"
android:textColor="@android:color/black"
android:textStyle="bold"
android:textSize="20sp"
android:layout_marginLeft="20dp"/>
<Button
android:id="@+id/back_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:text="Btn"
android:textColor="@android:color/white"
android:layout_marginLeft="5dp"
android:layout_alignParentRight="true"/>
</RelativeLayout>
只需编写以下内容即可在任何布局中添加此布局:
<include layout="@layout/topbar"/>
希望这会对你有所帮助。
答案 1 :(得分:1)
您可以使用custom title bar
,也可以将no title theme
用于您的活动,并将线性布局设置为您的活动布局上方的子布局,因此您的活动似乎有标题栏< / em>的。