如何设置对话框对话框片段的长标题?

时间:2012-07-03 14:55:31

标签: android

我希望标题对话框中包含书名。问题是长标题,似乎默认标题对话框试图修剪超长文本以适应对话框宽度

enter image description here

所以我提出了通过此代码删除默认标题的解决方案

setStyle(STYLE_NO_TITLE, 0);

使用textview小部件替换默认值。这是我的自定义对话框xml

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/dialog_title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

    <ListView
        android:id="@+id/list"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

</LinearLayout>

然而,它只是弄乱了对话框布局

enter image description here

那么我可以有更好的方法来解决这个问题吗?感谢

2 个答案:

答案 0 :(得分:1)

您可以使用google将自定义视图设置为对话框

但不要忘记dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);:)

答案 1 :(得分:1)

所以在你的DialogFragments onCreate中你setStyle:

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setStyle(DialogFragment.STYLE_NO_TITLE, R.style.Theme_Dialog);
}

然后使用您自己的自定义xml布局在oncreateview()中创建对话框。