android 设置activity不全屏

在AndroidManifest.xml中

 android:theme="@android:style/Theme.Dialog" 

主题已对话框显示;

在MainActivity中添加以下代码:

//设置隐藏标题
requestWindowFeature(Window.FEATURE_NO_TITLE);
//设置activity背景色透明
Drawable drawable = getResources().getDrawable(
				android.R.color.transparent);
this.getWindow().setBackgroundDrawable(drawable);


你可能感兴趣的:(android,标题,对话框,activity,隐藏)