2015-08-24 120 views
0

在我的應用程序中,我希望RelativeLayout覆蓋整個屏幕。但是當我運行我的應用程序時,高度小於屏幕高度。相對佈局不全屏

屏幕尺寸:720x1280 RelativeLayout的尺寸:720x1230

下面是代碼:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="fill_parent" 
    android:layout_height="match_parent" 
    android:id="@+id/hello" 
    tools:context="com.selfie.app.MainActivity" > 

    <FrameLayout 
     android:id="@+id/frame1" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     > 

     <SurfaceView 
      android:id="@+id/surfaceView" 
      android:layout_width="match_parent" 
      android:layout_height="fill_parent" /> 

     <ImageView 
      android:id="@+id/opaque" 
      android:layout_width="fill_parent" 
      android:layout_height="match_parent" 
      android:visibility="invisible" /> 

     <Spinner 
      android:id="@+id/spinner1" 
      android:layout_width="60dp" 
      android:layout_height="60dp" 
      android:background="@drawable/timeranim" 

      /> 

     <TextView 
      android:id="@+id/textView1" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_marginLeft="150dp" 
      android:layout_marginTop="250dp" 
      android:text="TextView" 
      android:textSize="38dp" 
      android:textColor="#000000" 
      android:textStyle="bold" 
      android:visibility="invisible" /> 


    </FrameLayout> 

    <Button 
     android:id="@+id/captureImage" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentBottom="true" 
     android:layout_centerHorizontal="true" 
     android:layout_marginBottom="@dimen/activity_vertical_margin" 
     android:background="@drawable/cameraanim" /> 

    <Button 
     android:id="@+id/flash" 
     android:layout_width="50dp" 
     android:layout_height="48dp" 
     android:layout_alignParentBottom="true" 
     android:layout_marginBottom="@dimen/activity_vertical_margin" 
     android:layout_marginRight="25dp" 
     android:layout_toLeftOf="@id/captureImage" 
     android:background="@drawable/flashanim" 
     /> 

    <Button 
     android:id="@+id/flipCamera" 
     android:layout_width="50dp" 
     android:layout_height="48dp" 
     android:layout_alignParentBottom="true" 
     android:layout_marginBottom="@dimen/activity_vertical_margin" 
     android:layout_marginLeft="25dp" 
     android:layout_toRightOf="@id/captureImage" 
     android:background="@drawable/camera" /> 

</RelativeLayout> 
+0

chnage這個'android:layout_height =「wrap_content」'匹配你父根佈局中的父母 – KOTIOS

+0

匹配父母不工作以及 – user3485978

+0

父母給你的配對是什麼 – KOTIOS

回答

1

match_parentfill_parent做同樣的事情。也許你應該注意到RelativeLayout的父母。

試圖在setContentView之前請求Windows.FEATURE_NO_TITLE;