android:background="@null"或
View v = findViewById(R.id.content);//找到你要設透明背景的layout 的idv.getBackground().setAlpha(100);//0~255透明度值int color = Color.argb(0, 255, 0, 255); // 第一个值为透明度btn.setBackgroundColor(color);控件半透明
//半透明窗口透明 在Manifest.xml中设置
android:theme="@android:style/Theme.Translucent"或
public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setTheme(R.style.Transparent); setContentView(R.layout.activity_main); }窗口全屏半透明
设置Manifest.xml中的Activity属性
android:theme="@style/Transparent"
版权声明:本文为博主原创文章,未经博主允许不得转载。