8

我想通过修改默认 Toast 来自定义我的 Toast 而不创建自定义布局。我想要吐司的背景为红色,吐司的文本颜色为白色,我想让吐司的背景比默认吐司更大。当我运行我的应用程序时,我的 toast 没有任何变化,它仍然显示在默认 toast 中。

这就是我自定义吐司的方式:

if (seriesSelection == null) {
    Toast toast = Toast.makeText(getApplicationContext(), "tidak ada chart yang dipilih", Toast.LENGTH_SHORT);
    toast.setGravity(Gravity.CENTER, 50, 50);
    toast.getView().setPadding(10, 10, 10, 10);
    toast.getView().setBackgroundColor(Color.RED);
    TextView text = (TextView) toast.getView().findViewById(android.R.id.message);
    text.setTextColor(Color.WHITE);
    text.setTextSize(14);
} else {
    Toast toast=  Toast.makeText(
            getApplicationContext(),
            "Nilai " + listData.get(seriesSelection.getPointIndex()).getInuNilai()+
            "  tanggal " + listData.get(seriesSelection.getPointIndex()).getTanggal(), 
            Toast.LENGTH_SHORT); 
    toast.setGravity(Gravity.CENTER, 50, 50);
    toast.getView().setPadding(10, 10, 10, 10);
    toast.getView().setBackgroundColor(Color.RED);
    text.setTextColor(Color.WHITE);
    text.setTextSize(14);
    toast.show();
}
4

3 回答 3

10

您可以让自定义视图膨胀自定义视图并使用toast.setView(layout).

例子:

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

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();

还有你的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:padding="8dp"
              android:background="#DAAA"
              >
    <ImageView android:src="@drawable/droid"
               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>

更多信息 @

http://developer.android.com/guide/topics/ui/notifiers/toasts.html

运行您的 if 和 else 部分代码(分别)它显示红色背景和白色文本颜色的吐司。我看不出有什么问题。但是,如果您需要自定义,您可以使用自定义布局并膨胀布局并将视图设置为 toast。

编辑:

你的文本视图

  TextView text = (TextView) toast.getView().findViewById(android.R.id.message);

在 if 部分初始化,在 else 部分 textview 未初始化。

在 if 和 else 代码之外初始化 textview。

检查这个名为 crouton 的库,您可能会发现它很有用

https://github.com/keyboardsurfer/Crouton

于 2013-07-23T03:40:54.200 回答
2

Toast 有一个setView()方法。

您可以自定义 Toast 以显示任何视图。

我想说与其尝试编辑 Toast 中的视图,不如创建一个视图并将其弹出。

于 2013-07-23T03:34:29.200 回答
0

我有非常简单易用的代码来相应地自定义 Toast,您也可以更改 Toast 的背景和文本颜色。

 Toast toast = Toast.makeText(MainActivity.this, "Added successfully", Toast.LENGTH_LONG);
    View view = toast.getView();
    view.setPadding(20, 20, 20, 20);
    view.setBackgroundResource(R.color.GREEN);
    view.setTextColor(Color.RED);
    toast.show();
于 2017-06-09T12:22:14.883 回答