如何在Android中创建带图片的透明活动?

时间:2014-01-28 13:46:36

标签: android xml transparent

我想创建一个透明 Activity,当我们在另一个Activity之上打开应用程序时会加载this

我希望点击该图片然后打开浏览器以打开与此图片集成的链接

我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:0)

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/root"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
android:background="@android:color/transparent"
    android:orientation="vertical" >

    <ImageView
    android:id="@+id/imageView1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    android:padding="2dp"
    android:background="@drawable/videobackground"
     />

</RelativeLayout>