对于我的Android Wear应用程序,我在FragmentGridPagerAdapter中有一些卡片段。但是,卡片中标题和文本的字体大小非常小。
是否可以使用不同的字体类型和字体大小设置卡片段中的标题和文字的样式?如果是这样,你会怎么做呢?
干杯。
答案 0 :(得分:0)
您可以更改卡片段的内容,因此更改片段布局中的textSize:
<android.support.wearable.view.CardFrame
android:layout_height="wrap_content"
android:layout_width="fill_parent">
<LinearLayout
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:orientation="vertical"
android:paddingLeft="5dp">
<TextView
android:fontFamily="sans-serif-light"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:text="@string/custom_card"
android:textColor="@color/black"
android:textSize="20sp"/>
<TextView
android:fontFamily="sans-serif-light"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:text="@string/description"
android:textColor="@color/black"
android:textSize="14sp"/>
</LinearLayout>
</android.support.wearable.view.CardFrame>