Android Utils

Android UI 设置背景

2015-06-23  本文已影响142人  几千里也

设置背景的途径

yourView.setBackgroundResource(R.drawable.your_picture);
yourView.setBackgroundDrawable(getResources().getDrawable(R.drawable.your_picture));
yourView.setBackgroundColor(Color.parseColor("#FFFF0000"));
yourView.setBackgroundColor(Color.RED);
android:background="@android:drawable/your_picture"
android:background="#33333333"

设置背景的颜色效果

android:background="@android:color/transparent"
android:theme="@android:style/Theme.Translucent"
View v = findViewById(R.id.your_view);
v.getBackground().setAlpha(100); // 值越小越透明
android:background="#80000000"
上一篇下一篇

猜你喜欢

热点阅读