編輯:關於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);
}
配置結束。
當你想在Android Studio中刪除某個module時,大家習慣性的做法都是選中要刪除的module,右鍵去找delete。但是 在Android Studio中你
1、什麼是安卓的Broadcast?安卓的四大組件之一,是一種廣泛應用在應用程序之間傳輸信息的機制。2、什麼是安卓的BroadcastReceiver?是對發送出來的廣播
字體圖標字體圖標是指將圖標做成字體文件(.ttf),從而代替傳統的png等圖標資源。使用字體圖標的優點和缺點分別為: 優點: &nbs