Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發實例 >> Activity透明/半透明效果的設置transparent(兩種實現方法)

Activity透明/半透明效果的設置transparent(兩種實現方法)

編輯:Android開發實例

       兩種方法實現Activity透明/半透明效果的設置,代碼思路很有調理,感興趣的朋友可以參考下,希望本文可以幫助到你。

  方法一:

  res/values文件夾下建立styles.xml:

XML/HTML代碼
  1. <?xml version=“1.0″ encoding=“utf-8″?>    
  2. <style name="translucent">  
  3. <item name="android:windowBackground">@color/translucent_background</item>  
  4. <item name="android:windowIsTranslucent">true</item>  
  5. </style>   

  在該文件夾下在創建文件colors.xml

XML/HTML代碼
  1. <?xml version=“1.0″ encoding=“UTF-8″?>    
  2. <RESOURCES>    
  3. <color name="translucent_background">#60000000</color>    
  4. </RESOURCES>    

  有了這些設置,就得告訴Activity用這寫設置。

  AndroidManifest.xml中找到要彈出的activity,加入theme:

  android:theme=”@style/translucent”

  哎,不錯,確實透明了。但是問題又來了,layout裡的button不透明啊。如果能讓他們也透明或者半透明呢?那得設置窗口屬性。

Java代碼
  1. Window window=getWindow();  
  2.          WindowManager.LayoutParams wl = window.getAttributes();  
  3.          wl.flags=WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON;  
  4.          wl.alpha=0.6f;      這句就是設置窗口裡崆件的透明度的.0.0全透明.1.0不透明.  
  5.          window.setAttributes(wl);  

  方法二:

  今天試著做activity半透明的效果,做出來之後才發現想復雜了!很簡單的幾句就可以實現,不多說了,貼代碼!

  res/values/styles.xml

XML/HTML代碼
  1. <resources>    
  2.   <style name="Transparent     
  3. ">    
  4.     <item name="android:windowBackground">@color/transparent_background</item>    
  5.     <item name="android:windowNoTitle">true</item>    
  6.     <item name="android:windowIsTranslucent">true</item>       
  7.     <item name="android:windowAnimationStyle">@+android:style/Animation.Translucent</item>    
  8.   </style>    
  9. </resources>   

  res/values/color.xml

XML/HTML代碼
  1. <?xml version="1.0" encoding="utf-8"?>    
  2. <resources>    
  3.   <color name="transparent_background">#50000000</color>    
  4. </resources>    

  注意:color.xml的#5000000前兩位是透明的效果參數從00--99(透明--不怎麼透明),後6位是顏色的設置

  manifest.xml

XML/HTML代碼
  1. <activity android:name=".TransparentActivity" android:theme="@style/Transparent">    
  2. </activity>    

  java代碼

Java代碼
  1. public void onCreate(Bundle savedInstanceState) {     
  2.         super.onCreate(savedInstanceState);     
  3.         setTheme(R.style.Transparent);      
  4.         setContentView(R.layout.transparent);     
  5. }    
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved