2013年4月1日月曜日

背景を透明にするサンプルコード

マニュフェストファイルのテーマを Translucentにする事で画面を透明にできる。


    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@android:style/Theme.Translucent" >


もしくは、レイアウトファイルのバックカラーを指定で透明にすることができます。

    android:background="#00000000">

左二桁が透明度です。

0 件のコメント:

コメントを投稿