有没有可能使用主题和样式更改 TextView 形状的方法?
我已将 textview 的形状更改为矩形,但未能更改 textview 的六边形。我怎么能这样做?
到目前为止,尝试搜索网络并尝试了代码,但没有得到解决方案。
有没有可能使用主题和样式更改 TextView 形状的方法?
我已将 textview 的形状更改为矩形,但未能更改 textview 的六边形。我怎么能这样做?
到目前为止,尝试搜索网络并尝试了代码,但没有得到解决方案。
试试这个代码,
shape.xml(保存在 res/drawable/ 中)
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape>
<corners android:radius="3dp/>
</shape>
</item>
</selector>
然后更改 TextView 的背景。
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/shape" />
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="black_text_view_medium" parent="@android:style/TextAppearance.Medium">
<item name="android:textColor">@color/black</item>
<item name="android:typeface">normal</item>
<item name="android:textSize">16sp</item>
</style>
</resources>
这是 res/values/red.xml 中的资源文件,并像这样在您的 textview 中定义此样式。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
style="@style/black_text_view_medium"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="This is your Textview Style"
/>
</LinearLayout>