嘿,我正在尝试创建一个标题,中间有一个图像,右上角有一个按钮。
我发现这篇文章如何在 android 中使用 iOS 中的文本和按钮制作标题,以及以下教程http://www.londatiga.net/it/how-to-create-custom-window-title-in-android/,我能够将图像放在中心并设置背景。但是,无论我做什么,我的按钮都不会出现在右上角。
我试图查看它是否被背景掩盖或者可能超出屏幕,但我找不到问题的原因。
我的 XML
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView
android:id="@+id/Header"
android:src="@drawable/header"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#ff000000"
android:layout_marginTop="5dp"
android:gravity="center_horizontal"/>
<Button
android:id="@+id/lockButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="5.0dip"
android:text="TEST"
/>
</LinearLayout>