Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android設置Activity背景為透明style的簡單方法(必看)

Android設置Activity背景為透明style的簡單方法(必看)

編輯:關於Android編程

方法一:

通過Theme.Translucent

@android:style/Theme.Translucent
@android:style/Theme.Translucent.NoTitleBar
@android:style/Theme.Translucent.NoTitleBar.Fullscreen

只需要在Manifest中需要透明的Activity內設置theme為以上任意一個就可以了

<activity 
  android:name="com.vixtel.simulate.MainApp" 
  android:configChanges="keyboardHidden|orientation" 
  android:label="@string/app_name" 
  android:screenOrientation="portrait" 
  android:theme="@android:style/Theme.Translucent.NoTitleBar" > 
  <intent-filter> 
    <action android:name="android.intent.action.MAIN" /> 
 
    <category android:name="android.intent.category.LAUNCHER" /> 
  </intent-filter> 
</activity> 

方法二:

自定義style,就像自定義Dialog的style一樣,在res-values-color.xml中添加透明顏色值:

<?xml version="1.0" encoding="UTF-8"?> 
<resources> 
 
  <color name="transparent">#0000</color> 
 
</resources> 

在res-values-styles.xml中添加如下:

<style name="myTransparent"> 
  <item name="android:windowBackground">@color/transparent</item> 
  <item name="android:windowNoTitle">true</item> 
  <item name="android:windowIsTranslucent">true</item> 
  <item name="android:windowAnimationStyle">@android:style/Animation.Translucent</item> 
</style> 

在Manifest中中需要透明的Activity內設置theme為我們自定義的即可

android:theme="@style/myTransparent"

運行程序後,就全透明了,看得見背景下的所有東西可以卻都操作無效。

以上就是小編為大家帶來的Android設置Activity背景為透明style的簡單方法(必看)全部內容了,希望大家多多支持本站~

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved