我想使用下面的图片并有两个隐形按钮,其中是" Select Colour
"和" Select Type
"。我知道我应该将图像用作背景,但我的问题是如何在每次用户点击图像时在图像上添加按钮,它们会打开不同的片段。
答案 0 :(得分:0)
这样的事情:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:background="@android:drawable/btn_star_big_off"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:id="@+id/above"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight=".5"
android:clickable="true"
android:text="Select color"/>
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight=".5"
android:clickable="true"
android:text="Select type"/>
</LinearLayout>
结果如下: