Android的Toast默认颜色和alpha

时间:2011-11-24 21:45:44

标签: android colors toast

Toast组件的默认颜色是什么 - 内部深灰色,浅灰色边框颜色和alpha值?我仔细检查了Toast.java的来源,但找不到它。

2 个答案:

答案 0 :(得分:16)

所以从transient_notification布局xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical"
  android:background="@drawable/toast_frame">

  <TextView
    android:id="@android:id/message"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:textAppearance="@style/TextAppearance.Small"
    android:textColor="@color/bright_foreground_dark"
    android:shadowColor="#BB000000"
    android:shadowRadius="2.75"
    />

</LinearLayout>

指向res/drawable-hdpi/toast_frame.9.png。然而,该图像似乎因版本而异。您可以在/platforms/<the version you want>/data/res内的android-sdk文件夹中找到它们。

答案 1 :(得分:0)

我发现默认吐司颜色和Alpha如下所示

  

颜色 - 黑色(0,0,0)

     

Alpha - 150

     

ARGB - (150,0,0,0)

您可以使用以下java代码制作Toast Rectangular: -

Toast_obj.getView().setBackgroundColor(Color.argb(150, 0, 0, 0));