2011-09-28 134 views
0

有沒有解決方案來創建一個沒有邊框的Alert Dialog?如果我創建一個佈局並將其附加到Alert Dialog,我顯示了我的佈局,但它被默認的對話邊框包圍。有什麼方法可以將它們切斷?提前致謝。如何創建完全自定義的警報對話框?

+0

創建活動,該活動的設置主題對話 – Dharmendra

+0

我敢打賭,你不能去任何比這更加個性化! @Dharmendra –

+0

@Dharmendra,它不能解決問題 – Egor

回答

3

這裏是一個way(如果你不喜歡這個綠色邊框的特定例子,請滾動到下面看到我發現的第二個例子)。

enter image description hereenter image description here

這裏是另一個example(此人給你一個例子沒有邊框,以及一個帶邊框。的解釋是在日本,但代碼給出了兩個。)

alert dialog with borderenter image description here

+0

現在頂部鏈接被破壞。最好是把代碼放在代碼的鏈接上,而這些代碼只要發佈本身就很少存在。 – JamieB

1
Hi if you use your own layout then set this in your styles.xml 

<style name="Theme.Transparent_layout" parent="android:style/Theme.Dialog"> 
    <item name="android:windowNoTitle">true</item> 
    <item name="android:windowFullscreen">true</item> 
    <item name="android:windowBackground">@android:color/transparent</item> 

</style> 

and set this style in your manifest file 

<activity android:name=".Main" android:theme="@style/Theme.Transparent_layout" />