0

我使用以下代码准备了一个自定义对话框,它在黑色矩形框中显示了我的自定义布局。

final Dialog dialog = new Dialog(getParent(),R.style.PauseDialog);
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE); 
dialog.setContentView(R.layout.social_share);
dialog.setTitle("Social Sharing");
dialog.setCancelable(true);

如何删除该框,它应该只显示我的自定义布局。

谢谢!

4

1 回答 1

0

<shape>您可以在自定义对话框中根据您的要求设置背景

custom_dialog_layout.xml 中

android:background = "@layout/dialog_shape"

然后在dialog_shape.xml 中:

<?xml version="1.0" encoding="UTF-8"?> 
<shape xmlns:android="http://schemas.android.com/apk/res/android" 
     android:shape="rectangle" > 
     <gradient android:startColor="#FF0E2E57" 
     android:endColor="#FF0E2E57" 
            android:angle="225" android:paddingLeft="20dip"/> 
</shape>
于 2013-05-15T09:54:43.030 回答