之前有人问过这个问题:AlertDialog custom title has black border
但没有得到令人满意的回答 - 并且缺少一些信息。
我正在尝试在 Android 中创建一个没有标题且底部没有任何按钮的自定义对话框。
但是,生成的对话框在视图的顶部和底部有黑色的“边框”/“间距”/一些东西。
从文档:
使用基本 Dialog 类创建的对话框必须有标题。如果您不调用 setTitle(),则用于标题的空间仍然是空的,但仍然可见。如果您根本不想要标题,那么您应该使用 AlertDialog 类创建自定义对话框。但是,由于使用 AlertDialog.Builder 类最容易创建 AlertDialog,因此您无法访问上面使用的 setContentView(int) 方法。相反,您必须使用 setView(View)。此方法接受一个 View 对象,因此您需要从 XML 扩展布局的根 View 对象。
所以,这就是我所做的:
欢迎.java
public class Welcome extends Activity
{
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.welcome);
LayoutInflater inflater = (LayoutInflater)this.getSystemService(LAYOUT_INFLATER_SERVICE);
View layout = inflater.inflate(R.layout.welcomedialog, (ViewGroup)findViewById(R.id.layout_root));
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setView(layout);
builder.create().show();
}
}
欢迎对话框.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/texturebg"
android:id="@+id/layout_root"
android:orientation="vertical"
android:padding="40px">
...
</LinearLayout>
注意:我尝试使用FrameLayout
作为根ViewGroup
而不是LinearLayout
按照我在某处找到的建议使用 - 但这没有帮助。
结果
setBackgroundDrawable 建议
public class Welcome extends Activity
{
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.welcome);
LayoutInflater inflater = (LayoutInflater)this.getSystemService(LAYOUT_INFLATER_SERVICE);
View layout = inflater.inflate(R.layout.welcomedialog, (ViewGroup)findViewById(R.id.layout_root));
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setView(layout);
AlertDialog dialog = builder.create();
dialog.getWindow().setBackgroundDrawable(new ColorDrawable(0));
dialog.show();
}
}
没有为我工作。