简体   繁体   中英

How do I change TextView font style in a Home screen widget?

如何在主屏幕小部件中的TextView中更改字体样式?

If you mean in runtime, a simple way is:

Text Size

yourRemoteView.setFloat(R.id.textview, "setTextSize", 30);

Text Color

yourRemoteView.setInt(R.id.textview, "setTextColor", Color.RED);

Like this:

First, define text styles in values/styles.xml :

<resources>
    <style name="AppTheme" parent="android:style/Theme.Light">
        ....
    </style>
    <style name="WidgetEntryTitle" parent="style/AppTheme">
        <item name="android:textSize">24sp</item>
        <item name="android:textStyle">bold</item>
        <item name="android:textColor">@android:color/black</item>
    </style>
    <style name="WidgetEntryDate" parent="style/AppTheme">
        <item name="android:textSize">20sp</item>
        <item name="android:textColor">@android:color/black</item>
    </style>
</resources>

Then, use the styles in mywidget_layout.xml :

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

    <TextView style="@style/WidgetEntryTitle"
        ... />

    <TextView style="@style/WidgetEntryDate"
        ... />
</RelativeLayout>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM