我在編輯我的問題,以便更好地理解我需要的內容,因爲下面的回答並未給出適當的解決方案。所以,我必須做的是在底部使用中性按鈕進行自定義警報對話框。這裏是例如,它應該是什麼樣子:Android:帶有自定義對話框和中性按鈕的警報對話框
直到現在我一直在使用XML和改變活動android:theme="@android:style/Theme.Holo.Light.Dialog"
使用的自定義對話框,這樣我就可以得到的外觀和感覺一樣。這裏是我的XML代碼:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/dialog"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/login_prompt_header"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginTop="15dp"
android:text="@string/login_prompt_rewards_header"
android:textSize="17sp"
android:textStyle="bold" >
</TextView>
<TextView
android:id="@+id/login_prompt_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/login_prompt_header"
android:layout_marginTop="5dp"
android:gravity="center_vertical|center_horizontal"
android:paddingLeft="18dp"
android:paddingRight="18dp"
android:text="@string/login_prompt_rewards_text"
android:textSize="15sp" >
</TextView>
<Button
android:id="@+id/log_in"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/login_prompt_text"
android:layout_centerHorizontal="true"
android:layout_gravity="center_horizontal"
android:layout_marginTop="15dp"
android:background="@drawable/log_in"
android:contentDescription="@string/none" >
</Button>
<Button
android:id="@+id/create_account"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/log_in"
android:layout_centerHorizontal="true"
android:layout_gravity="center_horizontal"
android:layout_marginTop="10dp"
android:background="@drawable/create_account"
android:contentDescription="@string/none" >
</Button>
</RelativeLayout>
通過上述佈局,我發現了以下結果:
我現在面臨的問題是:如何設置中性按鈕自定義對話?我對此沒有任何想法。如果您對我的問題有疑問,或者您無法理解該語言,請發表評論,以便我再次給您一個清晰的想法。幫助將不勝感激。
你是如何能得到它綠色的按鈕,使它看起來3D? – Si8 2013-08-15 13:57:41
@ SiKni8我爲此使用了自定義drawable。 – Anupam 2013-08-15 18:31:23