3

我想要一个多色的吐司。像这样:

多色吐司

我查看了有关更改 xml 中的布局以创建自定义 Toast 的不同教程,但没有一个解释像这样添加不同的颜色。

我怎样才能做到这一点?

=================================

回答

=================================

在您的帮助下,我设计了一个简单的 Method() 来使彩色吐司更容易调用。

资源/布局/toast_layout.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/toast_layout_root"
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:paddingLeft="12dp"
    android:paddingRight="12dp"
    android:paddingBottom="6dp"
    android:paddingTop="6dp"
    android:background="#DAAA"
    >
    <TextView android:id="@+id/text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        />
</LinearLayout>

src/PROJECTNAME/FILENAME.java

// Color Toast(String1,String2,Color)
// Toastbackground = White
// String1 = Dark Gray
// String2 - **CASE SENSITIVE**
//   = "same" = Dark Gray, or
//   = "purple" = Purple, or
//   = "orange" = Orange

    public void CToast(String t1, String t2, String c) {
        if (c == "same") {
            c = "444444";
        } else if (c == "purple") {
            c = "6600FF";
        } else if (c == "orange") {
            c = "ffcc00";
        }

        LayoutInflater inflater = getLayoutInflater();
        View layout = inflater.inflate(R.layout.toast_layout,
                (ViewGroup) findViewById(R.id.toast_layout_root));
        TextView textCToast = (TextView) layout.findViewById(R.id.text);

        String text2 = "<font color=#444444>" + t1 + "</font> <font color=#" + c + ">" + t2 + "</font";
        textCToast.setText(Html.fromHtml(text2));

        Toast toast = new Toast(this);
        toast.setDuration(Toast.LENGTH_SHORT);
        toast.setView(layout);
        toast.show();
    }

希望这有帮助!感谢大家

4

3 回答 3

7

在您的自定义布局中放置一个 textView。那里

String text = "This is <font color='red'>red</font>. This is <font color='blue'>blue</font>.";
textView.setText(Html.fromHtml(text), TextView.BufferType.SPANNABLE);

注意。取自此处的示例

于 2013-04-16T12:08:35.893 回答
4

尝试这样做,我希望这是你真正想要的

richTextView = (TextView)findViewById(R.id.rich_text);  

    // this is the text we'll be operating on  
    SpannableString text = new SpannableString("hello how are you");  

    // make "hello" to (characters 0 to 5) red color 
    text.setSpan(new ForegroundColorSpan(Color.RED), 0, 5, 0);  

richTextView.setText(text, BufferType.SPANNABLE);  

如果你想让它显示为吐司试试这个而不是 setText 像这样使用它

Toast.makeText(context, text, Toast.LENGTH_LONG).show();

在此处输入图像描述

于 2013-04-16T12:28:35.343 回答
3

我认为你应该祝酒SpannableText- 使用它可以让你应用颜色、样式并将笑脸等插入字符串。

所以,这将是我尝试以某种方式解决的第一个想法。

我确信这适用于绘制文本和多色通知。或者,也许您只需要应用可扩展过滤器。看这里

于 2013-04-16T12:09:41.923 回答