2017-08-11 96 views
0

我正在開發Android智能手錶應用程序。初始屏幕顯示正常。但是,當我進入下一個屏幕時,上面的部分會彈出項目名稱,就像這樣。在下圖中,Watch是項目的名稱。Android Wear:佈局在仿真器中無法正確顯示

enter image description here

我想看到整個屏幕,而不是白色的空間,包含項目的名稱。有誰知道如何解決它,爲什麼出現?

我的XML文件是

<?xml version="1.0" encoding="utf-8"?> 
<android.support.wear.widget.BoxInsetLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical" 
    tools:deviceIds="wear"> 

    <LinearLayout 
     android:id="@+id/mainContainer" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:orientation="vertical" 
     android:background="@color/black" 
     android:weightSum="1" 
     tools:ignore="UselessParent" 
     android:layout_alignParentTop="true" 
     android:layout_alignParentStart="true"> 

     <LinearLayout 
      android:id="@+id/sign_up_top_bar" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:gravity="center" 
      android:orientation="horizontal" 
      android:layout_marginTop="15dp"> 

      <TextView 
       android:id="@+id/textview" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:layout_gravity="center" 
       android:padding="5dp" 
       android:textAlignment="center" 
       android:textSize="18sp" 
       android:text="@string/text" 
       android:background="@color/black" 
       android:textColor="@color/white" 
       android:fontFamily="Century-Gothic.ttf" /> 

      <ImageView 
       android:id="@+id/imageView1" 
       android:layout_width="18dp" 
       android:layout_height="19dp" 
       android:layout_toRightOf="@+id/text" 
       android:src="@drawable/fingerprint" /> 

     </LinearLayout> 

     <Button 
      android:layout_marginTop="10dp" 
      android:id="@+id/button" 
      android:background ="@drawable/roundedbutton" 
      android:text="@string/button_text" 
      android:layout_width="108dp" 
      android:textAlignment="center" 
      android:drawablePadding="20dp" 
      android:layout_gravity="center" 
      android:textColor="@color/white" 
      android:layout_height="75dp" 
      android:layout_weight="0.34" /> 


    </LinearLayout> 

    </android.support.wear.widget.BoxInsetLayout> 
+0

你對你的活動使用什麼主題?你可能需要一個「NoTitleBar」。 – TofferJ

+0

我使用的是Theme.AppCompat.Light。 –

+0

基於此[線程](https://stackoverflow.com/questions/25953614/round-android-wear-emulator-is-using-rect-layouts),有很多問題與膨脹佈局是不正確的使用'WatchViewStub'。一個常見的問題是當你註冊一個監聽器的監聽器,這樣你可以檢查它是否在你的'onApplyWindowInsets'處理程序中是圓形或方形的。 其他參考:https://stackoverflow.com/questions/28754782/android-wear-round-emulator-inflating-square-layout – abielita

回答

1

問題的答案很簡單。一天後我想通了。我將主題從Theme.AppCompat.Light更改爲Theme.AppCompat.Light.NoActionBar在Manifest文件中。程序名稱欄消失。

+0

我認爲它的標準使用設備默認使用android Wear。無需使用appCompat。