Android Wear 卡片中的文字大小和颜色
What text size and color in Android Wear card
我需要创建一张自定义卡片。所以它的文字应该和Android磨损卡中的默认值一样。我使用下一个布局来创建自定义卡片
<android.support.wearable.view.CardFrame xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_margin="5dp"
android:text="@string/card_text_not_on_golf_course"/>
</FrameLayout>
</android.support.wearable.view.CardFrame>
Android 磨损卡的默认文本:
在我的应用程序中,我收到了文本:
非常感谢!
大多数标准卡片都可以在 UI Toolkit available from Design Download 中找到。从它判断 Title
是#a2a2a2 和 Description
#434343。字体要么是 Roboto Light,要么是它的浓缩版。我猜字体大小是 20 sp,但也可能是 16 sp。
我目前无法验证,但我猜某些 @android:style/TextAppearance
已映射到这些默认样式。
我需要创建一张自定义卡片。所以它的文字应该和Android磨损卡中的默认值一样。我使用下一个布局来创建自定义卡片
<android.support.wearable.view.CardFrame xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_margin="5dp"
android:text="@string/card_text_not_on_golf_course"/>
</FrameLayout>
</android.support.wearable.view.CardFrame>
Android 磨损卡的默认文本:
在我的应用程序中,我收到了文本:
非常感谢!
大多数标准卡片都可以在 UI Toolkit available from Design Download 中找到。从它判断 Title
是#a2a2a2 和 Description
#434343。字体要么是 Roboto Light,要么是它的浓缩版。我猜字体大小是 20 sp,但也可能是 16 sp。
我目前无法验证,但我猜某些 @android:style/TextAppearance
已映射到这些默认样式。