我正在尝试创建一个没有标题栏的自定义对话框,并且我通过执行以下操作来遵循 SO 建议
propDiag = new Dialog(this);
propDiag.requestWindowFeature(Window.FEATURE_NO_TITLE);
propDiag.setContentView(R.layout.property_daig);
这是我的 xml 的一部分
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:background="@drawable/background"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:orientation= "horizontal">
<LinearLayout android:layout_width="wrap_content"
android:layout_height="fill_parent" android:orientation= "vertical" android:layout_weight="1" >
//COUPLE OF buttons
</LinearLayout>
<View android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="0.5" ></View>
<LinearLayout android:layout_width="wrap_content"
android:layout_height="fill_parent" android:orientation= "vertical" android:layout_weight="1" >
//COUPLE OF buttons
</LinearLayout>
</LinearLayout>
它弄乱了我的布局并且一切都被推到最大左右的问题
当我在没有 requestWindowFeature 的情况下执行此操作时,除了出现标题之外,一切都很好!
任何人都可以解释并推荐解决方案吗?谢谢