Android:有没有一种很好的方法来创建类似Toast的对话框?

时间:2013-04-17 19:04:13

标签: android

我想向用户显示一些信息,但我不想在用户点击其他地方或按下后退按钮之前解除信息。我意识到显而易见的选择是在对话框中显示文本(而不是吐司)。我希望我的对话框类似于系统Toast。我认识到我可以复制transient_notification.xml布局(及其相关资源),但由于设备和操作系统的Toast样式差异很大,因此不太可能产生良好的匹配。

那么,是否有一种很好的方法可以创建一个继承系统Toast样式的Dialog?

4 个答案:

答案 0 :(得分:3)

或者您可以使用自定义布局

显示祝酒的自定义方法

public static Toast currentToast;
/**
 * Use a custom display for Toasts.
 *
 * @param message
 */
public static void customToast(String message) {
    // Avoid creating a queue of toasts
    if (currentToast != null) {
        // Dismiss the current showing Toast
        currentToast.cancel();
    }       
    //Retrieve the layout Inflater
    LayoutInflater inflater = (LayoutInflater) 
            context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    //Assign the custom layout to view
    View layout = inflater.inflate(R.layout.custom_toast, null);
    //Return the application context
    currentToast = new Toast(context.getApplicationContext());
    //Set toast gravity to center
    currentToast.setGravity(Gravity.CENTER | Gravity.CENTER, 0, 0);
    //Set toast duration
    currentToast.setDuration(Toast.LENGTH_LONG);
    //Set the custom layout to Toast
    currentToast.setView(layout);
    //Get the TextView for the message of the Toast
    TextView text = (TextView) layout.findViewById(R.id.text);
    //Set the custom text for the message of the Toast
    text.setText(message);
    //Display toast
    currentToast.show();
    // Check if the layout is visible - just to be sure
    if (layout != null) {
        // Touch listener for the layout
        // This will listen for any touch event on the screen
        layout.setOnTouchListener(new OnTouchListener() {           
            @Override
            public boolean onTouch(View v, MotionEvent event) {
                // No need to check the event, just dismiss the toast if it is showing
                if (currentToast != null) {
                    currentToast.cancel();
                    // we return True if the listener has consumed the event
                    return true;
                }   
                return false;
            }
        });
    }
}

custom_toast.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:padding="10dip"
    android:background="@drawable/custom_toast_shape">

    <TextView
        android:id="@+id/title" 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textStyle="bold"
        android:textColor="@color/blue"
        android:textSize="16sp"
        android:text="@string/app_name" 
    />

    <View
        android:layout_gravity="center"
        android:layout_width="fill_parent"
        android:layout_height="2dip"
        android:background="@color/blue" 
    />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="@color/black"
        android:layout_marginTop="5dp"
        android:layout_marginBottom="5dp"
        android:maxEms="15"
        android:gravity="center_horizontal"
        android:id="@+id/text" 
    />
</LinearLayout>

要使用此功能,请致电

Utils.customToast("Just a test to see if toast is working!\nPerfect");

修改 我稍微修改了一下这个方法。现在它不会创建一个吐司队列,它会在触摸时被解雇,就像正常的吐司一样。

如果其他人可以改进它,请随意这样做:)

答案 1 :(得分:1)

您可能想尝试Crouton,可自定义,可以在触摸时解散。

答案 2 :(得分:1)

两个可能的建议。一种可能性是使用PopupWindow和自定义XML。不应该太难实施。另一种选择可能是使用开源项目Crouton(https://github.com/keyboardsurfer/Crouton)中的Toast替换系统。基本上它提供了一个更美观的用户界面,我知道等待用户在解雇之前点击的选项。您可以在Play商店下载他们的演示。

答案 3 :(得分:0)

您可以使用此小部件(不使用“撤消”按钮),如下所示。 https://plus.google.com/u/0/+RomanNurik/posts/RA9WEEGWYp6