0
如何在Android TextView中設置邊緣的形狀,使結果如下圖所示?圓角逆形TextView Android
如何在Android TextView中設置邊緣的形狀,使結果如下圖所示?圓角逆形TextView Android
無需進行任何複雜的形狀像這樣。這隻需要使image
看起來像這樣(即標籤的背景)。或者你可以製作帶有白色輪廓的「藍點」,所以最終你會得到如圖所示的結果。
只需在/ res/drawable文件夾中創建一個名爲rounded_corners.xml的文件。
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Bottom 2dp Shadow -->
<item>
<shape android:shape="rectangle">
<solid android:color="#d8d8d8" />
<corners android:radius="7dp" />
</shape>
</item>
<!-- White Top color -->
<item android:bottom="3px">
<shape android:shape="rectangle">
<solid android:color="#FFFFFF" />
<corners android:radius="7dp" />
</shape>
</item>
</layer-list>
,並在文本框中爲背景繪製
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/rounded_corners"
/>
希望這有助於指定此!