2017-01-23 52 views
0

我創建了一個基本活動,並且包含content_main的activity_main。但在設計屏幕上,我可以看到,包含的content_main從工具欄下方開始,並在導航欄後面結束。我認爲包含的佈局與整個屏幕一樣高,不如工具欄和屏幕末端之間的空間高。我能做什麼? Screenshot of Designscreen佈局在導航欄後面(屏幕外)

Activity_Main

<android.support.design.widget.CoordinatorLayout 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:layout_width="match_parent" 
    android:layout_height="match_parent" 
    tools:context="com.htlhl.kellergassen_app.MainActivity" 
    android:fitsSystemWindows="true"> 

    <android.support.design.widget.AppBarLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:theme="@style/AppTheme.AppBarOverlay"> 

     <android.support.v7.widget.Toolbar 
      android:id="@+id/toolbar" 
      android:layout_width="match_parent" 
      android:layout_height="?attr/actionBarSize" 
      android:background="@color/KG_orange"> 

      <android.support.v7.widget.AppCompatTextView 
       android:id="@+id/toolbar_title" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:layout_gravity="center" 
       android:text="@string/HomeActivity" 
       style="@style/Toolbartitle_KG" /> 

     </android.support.v7.widget.Toolbar> 
    </android.support.design.widget.AppBarLayout> 


    <include layout="@layout/content_main" /> 

</android.support.design.widget.CoordinatorLayout> 

Content_Main

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout 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:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:background="@drawable/background2" 
    android:paddingTop="@dimen/activity_vertical_margin" 
    app:layout_behavior="@string/appbar_scrolling_view_behavior" 
    tools:context="com.htlhl.kellergassen_app.MainActivity" 
    tools:showIn="@layout/activity_main" 
    android:id="@+id/rl_main"> 


    <LinearLayout 
     android:id="@+id/linearLayout" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_alignParentEnd="false" 
     android:layout_alignParentStart="true" 
     android:layout_alignParentTop="true" 
     android:orientation="vertical" 
     android:onClick="here"> 

     <ImageView 
      android:id="@+id/Kellergassenlogo" 
      android:layout_width="150dp" 
      android:layout_height="150dp" 
      android:layout_gravity="center_horizontal" 
      android:layout_marginTop="0dp" 
      android:contentDescription="@string/ButtonKellergasse" 
      android:onClick="toKellerkatze" 
      android:src="@drawable/kk_logo" /> 

     <Button 
      android:id="@+id/btnToKellergasse" 
      android:layout_width="180dp" 
      android:layout_height="36dp" 
      android:layout_gravity="center_horizontal" 
      android:layout_marginTop="12dp" 
      android:background="@drawable/roundbutton" 
      android:onClick="toKellerkatze" 
      android:text="@string/ButtonKellergasse" 
      android:textColor="@color/white" 
      android:textSize="15sp" /> 

     <ImageView 
      android:id="@+id/Routenlogo" 
      android:layout_width="150dp" 
      android:layout_height="150dp" 
      android:layout_gravity="top|bottom|center_horizontal" 
      android:layout_marginTop="15dp" 
      android:contentDescription="@string/ButtonRoute" 
      android:onClick="toRouten" 
      android:src="@drawable/routenlogo" /> 

     <Button 
      android:id="@+id/btnToRouten" 
      android:layout_width="180dp" 
      android:layout_height="36dp" 
      android:layout_gravity="center_horizontal" 
      android:layout_marginTop="12dp" 
      android:background="@drawable/roundbutton" 
      android:onClick="toRouten" 
      android:text="@string/ButtonRoute" 
      android:textColor="@color/white" 
      android:textSize="15sp" /> 

    </LinearLayout> 

    <Button 
     android:id="@+id/btnParse" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="parse" 
     android:textColor="@color/black" 
     android:background="@color/KG_green" 
     android:onClick="startParsing"/> 

    <LinearLayout 
     android:id="@+id/layout_bottom_main" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_alignParentBottom="true" 
     android:orientation="horizontal" 
     android:weightSum="3"> 

     <LinearLayout 
      android:layout_width="0dp" 
      android:layout_height="wrap_content" 
      android:layout_marginBottom="10dp" 
      android:layout_marginStart="10dp" 
      android:layout_weight="2" 
      android:gravity="center" 
      android:orientation="vertical"> 

      <fragment 
       android:id="@+id/fragmentChooseLang" 
       android:name="com.htlhl.kellergassen_app.FragmentLanguage" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" /> 

      <TextView 
       android:id="@+id/tvChooseLang" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:layout_marginTop="5dp" 
       android:drawableTop="@drawable/german_flag" 
       android:text="@string/chooseLanguage" 
       android:textSize="12sp" 
       android:textStyle="bold" /> 
     </LinearLayout> 

     <Button 
      android:id="@+id/btnToImpressum" 
      style="?android:attr/borderlessButtonStyle" 
      android:layout_width="0dp" 
      android:layout_height="wrap_content" 
      android:layout_weight="1" 
      android:text="@string/ButtonImpressum" 
      android:textSize="15sp" 
      android:textStyle="bold" 
      android:layout_gravity="bottom"/> 
    </LinearLayout> 

</RelativeLayout> 

命名佈局 「layout_bootom_main」 沒有顯示,因爲它是layout_alignParentBottom和父母到底是出屏。

回答

0

你可以換一切滾動視圖裏面是這樣的:

<RelativeLayout 
......> 
    <ScrollView 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content"> 

< - !這裏的所有佈局兒童 - >

</ScrollView> 
</RelativeLaout> 
+0

那是可能的設備的設計,但是當我回來的主要活動,這是導航欄時「的onCreate」背後的佈局被調用,然後在導航欄上方,那麼屏幕就會被正確測量... – Goetti

1

您可以在content_main中將滾動視圖添加爲兩個線性佈局的父視圖。

<RelativeLayout> 
    <ScrollView 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 

     <LinearLayout 
     android:id="@+id/linearLayout" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content"> 

     <!-- Add your linear layouts here --> 

     </LinearLayout> 
    </ScrollView> 
</RelativeLaout> 

雖然在Android Studio中設計嘗試預覽具有更HIGHT

+0

但是我希望每一個東西都適合屏幕。包含標籤大小比屏幕大,但它應該在導航欄上方結束 – Goetti

+0

我並不完全瞭解@ Goetti。 – pratik