Android: Как установить цвет текста тоста

я отображаю сообщение тоста в результате оператора if, используя следующий код:

Toast.makeText(getBaseContext(), "Please Enter Price", Toast.LENGTH_SHORT).show();

он отображается как белый текст на белом фоне, как таковой он не может быть прочитан! Мой вопрос в том, как я могу изменить цвет текста тоста?

6 ответов


Вы можете создать пользовательскую Toast view для того чтобы одеть ваши требования. См. раздел "создание пользовательского представления тостов" вhttp://developer.android.com/guide/topics/ui/notifiers/toasts.html


вы можете достичь этого очень легко, без создания пользовательского макета, изменив тост по умолчанию:

Toast toast = Toast.makeText(this, resId, Toast.LENGTH_SHORT);
TextView v = (TextView) toast.getView().findViewById(android.R.id.message);
v.setTextColor(Color.RED);
toast.show();

вы можете найти макет, используемый видом тостов по умолчанию в Android SDK:

$ANDROID-SDK$ / platforms/android-8/data/res/layout / transient_notification.в 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="10dp"
          android:background="#DAAA"
          >
<ImageView android:id="@+id/image"
           android:layout_width="wrap_content"
           android:layout_height="fill_parent"
           android:layout_marginRight="10dp"
           />
<TextView android:id="@+id/text"
          android:layout_width="wrap_content"
          android:layout_height="fill_parent"
          android:textColor="#FFF"
          />
</LinearLayout>

-

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

ImageView image = (ImageView) layout.findViewById(R.id.image);
image.setImageResource(R.drawable.android);
TextView text = (TextView) layout.findViewById(R.id.text);
text.setText("Hello! 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();

источник


самый простой способ изменить цвет фона тоста и цвет фона текста тоста:

View view;
TextView text;
Toast toast;
toast.makeText(this, resId, Toast.LENGTH_SHORT);
view = toast.getView();
text = (TextView) view.findViewById(android.R.id.message);
text.setTextColor(getResources().getColor(R.color.black));
text.setShadowLayer(0,0,0,0);
view.setBackgroundResource(R.color.white);
toast.show();

вы также можете использовать SpannableString. Он также может окрашивать части строки.

SpannableString spannableString = new SpannableString("This is red text");
spannableString.setSpan(
                            new ForegroundColorSpan(getResources().getColor(android.R.color.holo_red_light)),
                            0,
                            spannableString.length(),
                            0);
Toast.makeText(this, spannableString, Toast.LENGTH_SHORT).show();

попробуйте использовать Toasty library. Он очень прост в использовании - https://github.com/GrenderG/Toasty

enter image description here