0

当我将三星手机与 wifi 网络连接时,有时会出现蓝色吐司。任何人都可以帮助自定义吐司的颜色。

例如:

在此处输入图像描述

4

3 回答 3

1

尝试这个:-

SpannableString text = new SpannableString("Please Wait !!!!! ");  


        text.setSpan(new ForegroundColorSpan(Color.BLUE), 0, 41, 0);  
        Toast.makeText(c.getApplicationContext(),text , Toast.LENGTH_LONG).show();

另一种方式:- 制作一个 xml / customToast.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:id="@+id/toast_layout"
              android:orientation="horizontal"
              android:layout_width="fill_parent"
              android:layout_height="fill_parent"
              android:padding="8dp"
              android:background="#DAAA"
              >
    <ImageView android:src="@drawable/img1"
               android:layout_width="wrap_content"
               android:layout_height="wrap_content"
               android:layout_marginRight="8dp"
               />
    <TextView android:id="@+id/text"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:textColor="#FFF"
              />
</LinearLayout>

活动中:-

LayoutInflater inflater = getLayoutInflater();
View layout = inflater.inflate(R.layout.customToast,
                               (ViewGroup) findViewById(R.id.toast_layout));

TextView text = (TextView) layout.findViewById(R.id.text);
text.setText("This is a custom toast");

Toast toast = new Toast(getApplicationContext());
toast.setGravity(Gravity.CENTER_VERTICAL, 0, 0);
toast.setDuration(Toast.LENGTH_LONG);
toast.setView(layout);
toast.show();
于 2014-02-20T06:22:41.507 回答
1

像这样:

LayoutInflater inflater = youractivity.this.getLayoutInflater();
            View layout = inflater.inflate(R.layout.custom_toast,
                    null);
            TextView text = (TextView) layout.findViewById(R.id.tvtoast);
            text.setText("No Internet Connection");
            text.setTextColor(Color.BLACK);
            Toast toast = new Toast(getActivity());
            toast.setView(layout);
            toast.setDuration(100);
            toast.show();

根据需要制作自己的布局custom_toast.xml并设置ColorTextView文本

输出:

在此处输入图像描述

于 2014-02-20T06:21:47.910 回答
0

您可以创建自定义 Toast 视图以满足您的要求。请参阅http://developer.android.com/guide/topics/ui/notifiers/toasts.html上标题为“创建自定义 Toast 视图”的部分

于 2014-02-20T06:20:46.260 回答