簡體   English   中英

警報對話框生成器在Android中成為黑色背景

[英]Alert Dialog builder coming black color background in android

我在應用程序中使用警報對話框生成器。 我已經檢查了api level16中的黑色背景作為對話框的背景,但沒有在api level 8中進行檢查。有人可以告訴我如何避免這種情況嗎?

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

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="260dp"
        android:layout_height="wrap_content" android:background="@drawable/dark_blue">

        <TextView android:id="@+id/textView1" android:layout_width="wrap_content" android:layout_height="wrap_content"
            android:text="@string/save_wishlist_title" android:layout_alignParentTop="true" android:layout_centerInParent="true" 
            android:textAppearance="?android:attr/textAppearanceLarge" />

         <LinearLayout android:id="@+id/linearLayout1" android:layout_centerInParent="true" android:layout_height="wrap_content" 
             android:layout_width="wrap_content" android:layout_marginTop="10dp" android:layout_below="@+id/textView1" android:orientation="vertical">

            <Button android:id="@+id/phoneButton" android:layout_width="120dp" android:layout_height="wrap_content"
                android:text="@string/phone_button" />

            <Button android:id="@+id/emailButton" android:layout_width="120dp" android:layout_height="wrap_content"
                android:text="@string/email_buton" android:layout_marginTop="5dp"/>

            <Button android:id="@+id/accountButton" android:layout_width="120dp" android:layout_height="wrap_content" 
                android:text="@string/account_button" android:layout_marginTop="5dp"/>
        </LinearLayout>

    </RelativeLayout>

</ScrollView>

在您要設置警報對話框的任何活動中,將此布局充氣。

LayoutInflater li = LayoutInflater.from(VMAdjustFrame.this);
promptsView = li.inflate(R.layout.wishlist_save_prompt, null);
alertDialogBuilder = new AlertDialog.Builder(VMAdjustFrame.this);
alertDialogBuilder.setView(promptsView);
final AlertDialog dialog = alertDialogBuilder.show();

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM