我正在尝试在support.v7.widget.Toolbar中使用一些视图,但看起来它们都被放置在水平LinearLayout中。我正在寻找创建更多like this的东西,其中EditText结束溢出菜单,而不是溢出菜单开始的位置。这是我目前的布局:
<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 :(得分:1)
您可能会在您的LinearLayout
Toolbar