Bootstrap

Android——透明度设置

Drawable的设置参数为int 取值:0~255,View的设置参数为float 取值:0~1


通过Drawable对透明度的设置:

//Activity的onCreate()中,setContentView()后,添加如下代码:
int color = getResources().getColor(android.R.color.black);
Drawable drawable = new ColorDrawable(color);
drawable.setAlpha(150);
getWindow().setBackgroundDrawable(drawable);

对View设置

View view = findViewById();
view.setAlpha(float);//float 取值范围0~1

对Activity设置

<?xml version="1.0" encoding="utf-8"?>
<resources>
  <style name="Theme.Transparent" parent="android:Theme">
    <item name="android:windowIsTranslucent">true</item>
    <item name="android:windowBackground">@android:color/transparent</item>
    <item name="android:windowNoTitle">true</item>
  </style>
</resources>
//在Manifest.xml文件中的activity属性中添加
<activity android:name="....yourActivity"
   android:screenOrientation="portrait"
   android:theme="@style/Theme.Transparent" />


悦读

道可道,非常道;名可名,非常名。 无名,天地之始,有名,万物之母。 故常无欲,以观其妙,常有欲,以观其徼。 此两者,同出而异名,同谓之玄,玄之又玄,众妙之门。

;