2017-02-12 19 views
0

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である:

enter image description here

そして、これは2.0.0、最終リリースである:私はLG都会的な第2世代LTE上でテストしてい enter image description here

答えて

1

これは実際にBoxInsetLayoutのバグフィックスだった - 前に、あなたのFrameLayoutandroid:padding="5dp"は(「フォアハンドが」app:layout_box="all"エッジのエッジに直接だった理由です)は無視されていました。今、それは尊敬されており、あなたの内面全体があらゆる面で埋められているため、全体的にスペースが少なくなります。

FrameLayoutandroid:padding="5dp"を削除するだけで、以前の外観に戻すことができます。

関連する問題