Android 在 Fragment 的单独行上带有 editText 的操作栏

Android Action Bar with editText on separate line in Fragment

因此开始研究如何创建一个带有自动完成文本视图的操作栏以进行搜索。我发现的大多数解决方案都接近我正在寻找的东西,但是它们似乎都专注于将添加到操作栏的任何和其他视图塞进一行。

更复杂的是,这一切都位于一个视图寻呼机片段中,其父级 activity 已经有一个操作栏。因此,将 setSupportingActionBar 调用与工具栏一起使用会引发非法状态异常。

不确定我正在完成的工作是否真的得到支持,但我已经支持了。

我要找的最终结果是这样的

这是我写的

*包含名为 autocomplete.xml *

的自动完成文本视图的自定义视图
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout  xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <AutoCompleteTextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/search_text_view"
        android:paddingTop="15dp"
        android:paddingBottom="15dp"
        android:paddingLeft="20dp"
        android:paddingRight="20dp"
        android:drawableLeft="@drawable/ic_search_blue"
        android:background="@drawable/white_edittext"/>

</LinearLayout>

这是我片段中用于设置操作栏的代码

private void initializeActionsBarWithAutocomplete(){
        ActionBar actionBar = ((MyParentActivity) getActivity()).getSupportActionBar();
        actionBar.setTitle(getResources().getString(R.string.default_title));

        View autoCompleteView = LayoutInflater.from(getContext()).inflate(R.layout.autocomplete, null);
        mSearchTextView = (AutoCompleteTextView) autoCompleteView.findViewById(R.id.search_text_view);
        mSearchTextView.setAdapter(mTypeAheadAdapter);
        mSearchTextView.setOnItemClickListener(this);
        mSearchTextView.addTextChangedListener(this);

        actionBar.setCustomView(autoCompleteView);
        actionBar.setDisplayShowCustomEnabled(true);
        actionBar.setDisplayShowTitleEnabled(true);
        actionBar.setDisplayHomeAsUpEnabled(true);
    }

我最后得到的是这个

所以假设我正在尝试做的事情是可能的,并且我至少在正确的轨道上,那么这里究竟出了什么问题。我假设让自定义视图与父视图匹配会强制文本视图占用自己的行并相应地扩展操作栏的大小。显然不是这样。我看过一些允许您明确设置操作栏高度的文章,但据我所知,该方法将导致在操作栏视图下出现相同的一堆白色 space。

您可以使用 XML 中的 Toolbar 小部件,并根据需要对其进行自定义。

这是 Toolbar 的布局,其中包含 AutoCompleteTextView:

<android.support.design.widget.AppBarLayout
    android:id="@+id/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="wrap_content"
        android:background="?attr/colorPrimary"
        app:layout_scrollFlags="scroll|enterAlways"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
        app:titleTextColor="#FFFFFF">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:paddingTop="20dp">

            <TextView
                android:id="@+id/toolbar_title"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="8dp"
                android:text="@string/app_name"
                android:textColor="#ffffff"
                android:textSize="20sp"
                android:textStyle="bold" />

            <android.support.v7.widget.CardView
                android:layout_width="match_parent"
                android:layout_height="40dp"
                android:layout_margin="8dp"
                android:layout_centerInParent="true"
                cardview:cardBackgroundColor="#ffffff"
                cardview:cardCornerRadius="2dp"
                cardview:cardElevation="0dp">

                <RelativeLayout
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:focusable="true"
                    android:focusableInTouchMode="true">

                    <AutoCompleteTextView
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:id="@+id/search_text_view"
                        android:paddingTop="15dp"
                        android:paddingBottom="15dp"
                        android:paddingLeft="20dp"
                        android:paddingRight="20dp"
                        android:drawableLeft="@drawable/ic_search_blue"
                        android:background="@drawable/white_edittext"/>

                </RelativeLayout>
            </android.support.v7.widget.CardView>
        </LinearLayout>
    </android.support.v7.widget.Toolbar>

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

在您的 JAVA 代码中试试这个:

Toolbar mToolBar;
ActionBar mActionBar;
AutoCompleteTextView mSearchTextView;

private void initializeActionsBarWithAutocomplete(){

    // ToolBar
    mToolBar = (Toolbar) findViewById(R.id.toolbar);

    // AutoCompleteTextView 
    mSearchTextView = (AutoCompleteTextView) mToolBar.findViewById(R.id.search_text_view);
    mSearchTextView.setAdapter(mTypeAheadAdapter);
    mSearchTextView.setOnItemClickListener(this);
    mSearchTextView.addTextChangedListener(this);

    setSupportActionBar(mToolBar);

    // ActionBar
    mActionBar = getSupportActionBar();
    mActionBar.setTitle(getResources().getString(R.string.default_title));
    mActionBar.setDisplayHomeAsUpEnabled(true);
}

输出:

希望对你有所帮助~