Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android設置透明屬性總結

Android設置透明屬性總結

編輯:關於Android編程

在styles裡面加<style name="transparent2" parent="@android:style/Theme.Translucent">
      <item name="android:windowNoTitle">true</item>
  </style>然後在activity裡面加theme屬性

<style name="transparent">
      <!-- <item name="android:windowIsFloating">true</item> 表示浮在屏幕上的,如果在這裡使用了,整個layout就會在 屏幕中心,相當於浮在屏幕上,所以這個只適用於dialog -->
      <item name="android:windowBackground">@color/transparent</item>  //你可以添加自己的透明背景顏色
    <item name="android:windowIsTranslucent">true</item>
      <item name="android:windowNoTitle">true</item>
            <item name="android:windowAnimationStyle">@+android:style/Animation.Translucent</item>
  </style>

 

1、用android系統的透明效果
Java代碼
android:background="@android:color/transparent"

例如 設置按鈕
Java代碼
<Button android:background="@android:color/transparent" 
 
  android:text="@+id/Button01" 
 
  android:id="@+id/Button01" 
 
  android:layout_width="wrap_content" 
 
  android:layout_height="wrap_content" 
 
  android:textColor="#ffffff" /> 

2、用ARGB來控制
Java代碼
半透明<Button android:background="#e0000000" />
透明<Button android:background="#00000000" />
 
3、設置alpha
Java代碼
View v = findViewById(R.id.content);//找到你要設透明背景的layout 的id
v.getBackground().setAlpha(100);//0~255透明度值
 
android 窗體透明的,黑暗度等的設置技巧
設置透明度(這是窗體本身的透明度,非背景)
WindowManager.LayoutParams lp=getWindow().getAttributes();

lp.alpha = 0.3f;
getWindow().setAttributes(lp);

alpha在0.0f到1.0f之間。1.0完全不透明,0.0f完全透明

 

設置黑暗度

WindowManager.LayoutParams lp=getWindow().getAttributes();

 lp.dimAcount = 0.5f;
getWindow().setAttributes(lp);

getWindow().addFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND);

dimAmount在0.0f和1.0f之間,0.0f完全不暗,1.0f全暗

 

設置背景模糊

getWindow().setFlags(WindowManager.LayoutParams.FLAG_BLUR_BEHIND,WindowManager.LayoutParams.FLAG_BLUR_BEHIND);

以上設置對dialog對話框同樣有效

 

 

 

Activity的透明、半透明效果的設置transparent
res/values/styles.xml
 
 <resources> 
  <style name="Transparent"> 
    <item name="android:windowBackground">
       @color/transparent_background
    </item> 
    <item name="android:windowNoTitle">true</item> 
    <item name="android:windowIsTranslucent">true</item>   
    <item name="android:windowAnimationStyle">
         @+android:style/Animation.Translucent
   </item> 
  </style> 
</resources>

res/values/color.xml
 
 
 <?xml version="1.0" encoding="utf-8"?> 
<resources> 
  <color name="transparent_background">#50000000</color> 
</resources> 
//注意:
//color.xml的#5000000前兩位是透明的效果參數從00--ff(透明--不怎麼透明),
//後6位是顏色的設置

manifest.xml
 
 <activity
android:name=".TransparentActivity"
android:theme="@style/Transparent"> 
</activity>

java代碼
 
 public void onCreate(Bundle savedInstanceState) { 
        super.onCreate(savedInstanceState); 
        setTheme(R.style.Transparent);  
        setContentView(R.layout.transparent); 
}

配置結束。

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