XML文件中画一条横线或竖线,给一个textview画下划线

我们在android编程中往往需要横线和竖线的代码,同时textview下划线,我曾经也想了很多办法,最后查阅资料终于知道怎么操作了,所以分享出来!

画横线:

<View
        android:layout_width="match_parent"
        android:layout_height="1px"
        android:layout_below="@+id/rl_wallet"
        android:layout_marginTop="20dp" 
        android:background="#000000" />

画竖线:

<View  
    android:layout_width="1dip" 
    android:layout_height="fill_parent"
    android:background="#EEEFFF"
    android:layout_gravity="center_horizontal"
    />

给一个textview画下划线:

textview.getPaint().setFlags(Paint. UNDERLINE_TEXT_FLAG ); 

你可能感兴趣的:(XML文件中画一条横线或竖线,给一个textview画下划线)