自分のアクティビティで透明なビューを作成したいと思います。アクティビティは、タブのクリックで表示されます。私が欲しいのは、透明なビューがアクティビティの上にオーバーレイされるが、タブはクリック可能なままであるときに、自分のアクティビティの任意のイメージをクリックした後です。また、透明なビューが作成されると、アクティビティの背景アイテムはクリック可能であってはなりません。出来ますか? アンドロイドでこれをどのように達成できるでしょうか?アンドロイドで別のビューを透過的に作成する方法は?
4
A
答えて
2
//test.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/ic_launcher"
android:orientation="vertical" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:color/transparent"
android:orientation="vertical" >
</LinearLayout>
</LinearLayout>
0
これはオーバーレイした画像は、その下に任意のボタンをクリックを通過することを可能にする:
<ImageView
...
android:clickable="false"
...
/>
(true
のとき、そのセット、ImageViewのすべてのクリックを要する)