0

我有一个当前使用 Toast_Frame 的文本视图,但我想修改它并使用 XML 文件添加我自己的扭曲和颜色。我该怎么做?这是我当前的代码:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView android:id="@+id/message" 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" 
    android:layout_centerInParent="true"
    android:background="@android:drawable/toast_frame"/>
</RelativeLayout>

正如你所看到的背景,我正在做一个 Toast_frame,我想改变它。任何帮助表示赞赏

4

3 回答 3

0
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="opaque_red">#f00</color>
<color name="translucent_red">#80ff0000</color>
</resources>

Resources res = getResources();
int color = res.getColor(R.color.opaque_red);
textView.setBackgroundColor(color);
于 2013-08-19T10:11:36.153 回答
0

正如您在上面的评论中所说,您创建了一个新的可绘制 XML,“name_something.xml”并将您的“toast_frame”更改为新文件。

在这个新文件中,您可以按照 Shobhit Puri 的说明进行操作,具体取决于您想要的背景。

希望这可以帮助。

于 2013-08-19T05:25:30.270 回答
0

您可以尝试使用自定义 XML。阅读详细文档Drawable Resources。例如,您可以在 XML 中定义gradientstroke,并使用此自定义可绘制对象来设置背景。

<shape xmlns:android="http://schemas.android.com/apk/res/android"
      android:shape="rectangle">

      <gradient android:endColor="#CCCCCC" android:startColor="#CCCCCC"
      android:angle="270" />

      <stroke android:width="1dp" android:color="#999999" />

      <corners android:bottomRightRadius="0dp"
      android:bottomLeftRadius="0dp" android:topLeftRadius="0dp"
      android:topRightRadius="0dp" />

</shape>

另请参阅如何在 Android 文本视图周围放置边框?

于 2013-08-18T10:06:24.580 回答