2015-01-20 58 views
1

我想在一個support.v7.widget.Toolbar中使用幾個視圖,但它看起來像它們都放在水平LinearLayout中一樣。我正在尋找更多的東西like this,其中EditText結束溢出菜單,而不是溢出菜單開始的地方。這是我目前的佈局:Android的工具欄佈局是水平的

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
     xmlns:tools="http://schemas.android.com/tools" 
     android:id="@+id/container" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:focusable="true" 
     android:focusableInTouchMode="true" 
     android:orientation="vertical" 
     tools:context=".MainActivity" 
     tools:ignore="MergeRootFrame"> 

     <android.support.v7.widget.Toolbar 
      android:id="@+id/toolbar" 
      android:layout_width="match_parent" 
      android:layout_height="250sp" 
      android:background="@color/primary" 
      android:gravity="bottom" 
      android:minHeight="?attr/actionBarSize"> 

      <LinearLayout 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content" 
       android:orientation="horizontal"> 

       <Button 
        android:id="@+id/button_id" 
        android:layout_width="40sp" 
        android:layout_height="40sp" 
        android:layout_gravity="center" /> 

       <LinearLayout 
        android:layout_width="match_parent" 
        android:layout_height="wrap_content" 
        android:gravity="center" 
        android:orientation="vertical"> 

        <TextView 
         android:layout_width="match_parent" 
         android:layout_height="wrap_content" 
         android:text="@string/url" 
         android:textColor="@color/accent" 
         android:textSize="16sp" /> 

        <EditText 
         android:id="@+id/url_text_field_id" 
         android:layout_width="match_parent" 
         android:layout_height="wrap_content" 
         android:inputType="textNoSuggestions" 
         android:maxLines="1" /> 

        <TextView 
         android:id="@+id/output_text_view_id" 
         android:layout_width="match_parent" 
         android:layout_height="wrap_content" 
         android:text="@string/initial_output_text_id" 
         android:textSize="16sp" /> 
       </LinearLayout> 
      </LinearLayout> 
     </android.support.v7.widget.Toolbar> 

     <ListView 
      android:layout_width="match_parent" 
      android:layout_height="match_parent"/> 

    </LinearLayout> 

Here's a screenshot。你可以看到視圖符合分享按鈕和溢出菜單。標題也隱藏在左側的意見。 如何在工具欄中爲我的視圖添加第二行,以便跨越頁面的寬度?希望我只是缺少一些小東西,因爲我是Android新手。先謝謝您的幫助。

+0

有趣。將它放在工具欄中的好處是什麼,而不是從工具欄和下一個視圖中沒有分隔符? – 2015-01-23 07:48:31

+0

我認爲你是對的。我想將它們放在同一個容器中以保持整潔,但我最終將「工具欄」內的視圖移動到頂級線性佈局中的單獨元素中。我爲工具欄和視圖分配了相同的高程和背景顏色,現在看起來好像它們都是工具欄的一部分。 – 2015-01-24 16:18:43

回答

1

你可以,也許,把一個垂直LinearLayout到您Toolbar

+0

我將Button和其他LinearLayout周圍的LinearLayout更改爲「垂直」,但它並未解決我的問題。 http://i.imgur.com/xM1EoZd.png – 2015-01-20 20:39:25