我發現,你可以設置對話框中的邊距和填充以可抽拉XML
Dialog dialog = new Dialog(this);
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog.getWindow().setBackgroundDrawableResource(r.drawable.your_drawable);
dialog.getWindow().setContentView(R.layout.your_custom_dialog_layout);
dialog.getWindow().getAttributes().width = LayoutParams.FILL_PARENT;
dialog.show();
看看在r.drawable.your_drawable
<?xml version="1.0" encoding="utf-8"?>
<layer-list>
<item
xmlns:android="http://schemas.android.com/apk/res/android"
android:left="70dp"
android:right="70dp">
<shape android:shape="rectangle" >
<solid android:color="@color/white" />
<corners android:radius="4dp" />
<padding
android:bottom="70dip"
android:left="70dip"
android:right="70dip"
android:top="70dip" />
</shape>
</item>
</layer-list>
通過設置項目android:向右/左邊緣可繪製。 使用形狀填充確保custom_dialog_layout的字段不超過對話背景的寬度。
我希望它能幫助你一點點。
也有同樣的問題? ,任何答案? – Chris