1

我对自定义吐司有一点问题:吐司本身和三个文本视图的定位按预期工作。我将一个文本视图设置为黑色,将另一个设置为绿色。绿色的是绿色,带有黑色文本颜色(深灰色背景)的那个是黑色和红色的混合物。事实上,内部文本是黑色的,带有红色的阴影。对这种行为有什么解释吗?

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mytoast_layout"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:weightSum="100"

android:orientation="vertical"
android:background="@drawable/toast_frame">

<LinearLayout 
 android:orientation="horizontal"     
 android:layout_width="fill_parent" 
 android:layout_height="wrap_content"  

 android:weightSum="100" 
 android:layout_weight="90" 

 android:background="#444444" >

 <TextView
    android:id="@+id/leftview" 
    android:layout_height="wrap_content" 
    android:layout_width="0dp" 
    android:layout_weight="50"

    android:paddingLeft="0dp"
    android:paddingRight="0dp"

    android:gravity="center"

    android:textColor = "#000000"
    android:textAppearance="@style/myToast_small"
    android:shadowColor="#BB0000"
    android:shadowRadius="2.75" />

 <TextView 
    android:id="@+id/rightview"
    android:layout_height="wrap_content"
    android:layout_width="0dp"        
    android:layout_weight="50"

    android:paddingLeft="0dp"
    android:paddingRight="0dp"

    android:gravity="center"

    android:textColor = "#00FF00"
    android:textAppearance="@style/myToast_small"
    android:shadowColor="#BB0000"
    android:shadowRadius="2.75" />      
</LinearLayout>
<LinearLayout
    android:orientation="horizontal"    
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"  >

 <TextView
    android:id="@+id/mainview"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"      

    android:gravity="center_horizontal"

    android:textAppearance="@style/myToast_small"

    android:textColor="#FFFFFF"
    android:shadowColor="#BB0000"
    android:shadowRadius="2.75" />
 </LinearLayout> 
</LinearLayout>
4

1 回答 1

2

可能与每个TextViews 上的此代码有关:

android:shadowColor="#BB0000"
android:shadowRadius="2.75"

如果您不想要红色阴影,您可能想要删除它。

于 2013-02-17T22:09:31.443 回答