我想要書名的標題對話框。問題是與長標題,似乎默認標題對話框試圖微調,以適應該對話框寬度如何爲對話框對話框片段設置一個長標題?
超長文本於是我想出了通過刪除默認標題的解決方案此代碼
setStyle(STYLE_NO_TITLE, 0);
將默認值替換爲文本視圖窗口小部件。這是我的自定義對話框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>
但是它只是混亂的對話框佈局
所以任何人都可以我一個更好的方式來處理呢?由於
認爲您需要創建自己的自定義對話框。看看主題/樣式。 – Warpzit
你能給我更多關於這方面的信息嗎?謝謝 – Huppo
搜索開發者網站關於如何創建自定義對話框的對話框 – tyczj