2.0.0-alpha3から2.0.0にアップグレードした後、ほとんどの私のビューは歪んで見えます。これは私が使用しているレイアウトのXMLです:Android Wear 2.0.0-alpha3から2.0.0リリースにアップグレードするとレイアウトが壊れます
<?xml version="1.0" encoding="utf-8"?>
<android.support.wearable.view.BoxInsetLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="oviroa.bestshot.android.StartPlayActivity"
tools:deviceIds="wear"
android:padding="15dp">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="5dp"
app:layout_box="all">
<TextView
android:id="@+id/shot_type"
app:layout_box="all"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/forehand"
android:theme="@style/BST.HeaderText"/>
<Button
android:layout_marginTop="30dp"
android:layout_marginBottom="0dp"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:id="@+id/record"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/swoosh_background"
android:text="@string/record_action"
android:gravity="center_horizontal|bottom"
android:textAlignment="center"
android:paddingBottom="15dp"
android:theme="@style/BST.ButtonWithIcon.Bold" />
</FrameLayout>
</android.support.wearable.view.BoxInsetLayout>
ボタンは、以下のスクリーンショットで見るように大きく歪んでいます。コードで何も操作しない。
これは2.0.0-アルファ3である:
そして、これは2.0.0、最終リリースである:私はLG都会的な第2世代LTE上でテストしてい
。