カスタム カードを作成する必要があります。したがって、そのテキストは Android Wear カードのデフォルトと同じである必要があります。次のレイアウトを使用してカスタム カードを作成します
<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 Wear カードのデフォルト テキスト:
私のアプリでは、テキストを受け取ります:
どうもありがとうございました!