我正在开发一个 Android 项目,我需要在其中显示Button or ImageView
我的活动(屏幕)的标题。下面是我的活动的 XML 布局。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/app"
android:layout_width="1dp"
android:layout_height="1dp"
android:layout_margin="2px"
android:orientation="vertical"
android:padding="2px" >
<LinearLayout
android:id="@+id/tabBar"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<ImageView
android:id="@+id/BtnSlide"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="0px"
android:padding="0px"
android:src="@drawable/button" />
</LinearLayout>
</LinearLayout>
使用上面的布局,我可以在标题button image
下方看到我的黑色。Proximity
是否可以显示我button image
的左侧Proximity
而不是在接近下方显示一行?
或者
有什么办法可以让image which is left to Proximity
标题可以点击吗?如果我能做到这一点,那么我不需要在顶部显示黑色按钮图像。
该图像来自 AndroidManifest.xml 文件。我不知道如何使它可点击。