Android設定透明、半透明等效果
2011-12-15 10:42:51
設定透明效果 大概有三種
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" />
半透明<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透明度值
View v = findViewById(R.id.content);//找到你要設透明背景的layout 的id
v.getBackground().setAlpha(100);//0~255透明度值
android 窗體透明的,黑暗度等的設定技巧
設定透明度(這是窗體本身的透明度,非背景)
lp.alpha=
|
|
|
|
31
|
|
|
以上設定對dialog對話方塊同樣有效
Activity的透明、半透明效果的設定transparent
res/values/styles.xml
1
2 3 4 5 6 7 8 9 10 11 12 |
<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
1
2 3 4 5 6 7 |
<?xml version="1.0" encoding="utf-8"?>
<resources> <color name="transparent_background">#50000000</color> </resources> //注意: //color.xml的#5000000前兩位是透明的效果引數從00--99(透明--不怎麼透明), //後6位是顏色的設定 |
manifest.xml
1
2 3 4 |
<activity
android:name=".TransparentActivity" android:theme="@style/Transparent"> </activity> |
java程式碼
1
2 3 4 5 |
public void onCreate(Bundle
savedInstanceState) {
super.onCreate(savedInstanceState); setTheme(R.style.Transparent); setContentView(R.layout.transparent); } |
相關文章
- CSS如何設定div半透明效果CSS
- css3的半透明效果CSSS3
- iOS開發使用半透明模糊效果iOS
- iOS 開發使用半透明模糊效果iOS
- iTerm2 如何設定半透明視窗?
- android shape的使用詳解以及常用效果(漸變色、分割線、邊框、半透明陰影效果等)Android
- iOS 開發中如何使用半透明模糊效果iOS
- 直播app開發,flutter 狀態列 AppBar 設定透明和半透明APPFlutter
- jQuery設定透明度效果jQuery
- 以OpacityMask設計半透明遮罩遮罩
- 帶有半透明效果的遮罩層程式碼例項遮罩
- CSS實現div層半透明效果程式碼例項CSS
- 為Symbian程式中的圖片增加半透明效果
- emacs視窗半透明Mac
- 小視訊原始碼,CSS 實現半透明邊框效果原始碼CSS
- 滑鼠按住拖動具有半透明效果的程式碼例項
- Android 設定TextView透明度AndroidTextView
- CSS 3半透明邊框CSS
- 使用半透明系統UI擴充套件Android檢視UI套件Android
- Android設定Activity背景為透明styleAndroid
- android中popupwindow彈出後,螢幕背景變成半透明Android
- Android 之 View透明度的設定AndroidView
- WebGL半透明物體的繪製Web
- 半透明邊框與background-clip
- 相容所有瀏覽器js設定元素透明度效果瀏覽器JS
- CSS如何實現半透明層上面的文字不透明CSS
- Android 設定圖片 Bitmap任意透明度Android
- Android 為PopupWindow設定動畫效果Android動畫
- css3半透明邊框程式碼CSSS3
- css半透明邊框程式碼例項CSS
- Android中使按鈕的背景變得透明&前端中css設定透明背景Android前端CSS
- 使div變成半透明的css樣式CSS
- 自繪實現半透明水晶按鈕
- 用css使網頁圖片半透明(轉)CSS網頁
- canvas 設定透明度Canvas
- canvas設定透明度Canvas
- jQuey設定透明度
- CSS 透明度設定CSS