如何在Android上创建Line Drawable

时间:2016-05-02 05:42:26

标签: android android-drawable xml-drawable

如何在Android上创建Drawable外观如下文所示:

  

<德尔>删除

2 个答案:

答案 0 :(得分:1)

对于单个单词我们可以使用drawable。 以下是示例:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:state_pressed="false"><shape android:shape="line">
            <stroke android:width="2dp" android:color="#ffffff" />
        </shape>
    </item>

</selector>

以下多行使用: -

TextView tv=(TextView) v.findViewById(android.R.id.text1);
tv.setPaintFlags(tv.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG);

使用您的参考而不是“tv”

答案 1 :(得分:0)

您可以这样做:

编程方式:

 TextView tv = (TextView) findViewById(R.id.mytext);
    tv.setText("Remove");
    tv.setPaintFlags(tv.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG);

来自xml文件:

    <RelativeLayout
           android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           >
     <TextView
           android:id="@+id/textView2"
           android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           android:text="Remove"
           />
     <View
           android:layout_width="fill_parent"
           android:layout_height="1dp"
           android:background="@color/black"
           android:layout_centerVertical="true"
            />
</RelativeLayout>