我正在尝试设置相对布局的背景,
relativeLayout1.setBackgroundColor(0x00000000);
我的程序一直在崩溃。这是logcat。
代码:
RelativeLayout window=(RelativeLayout) findViewById(R.id.window);
window.setBackgroundColor(0x00000000);
这是除了常规代码之外唯一的setContentView(R.layout.something);
东西super.onCreate(savedInstanceState);
完整代码:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_invisible);
getWindow().addFlags(WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE);
window=(RelativeLayout) findViewById(R.id.window);
window.setBackgroundColor(0x00000000);
}