Android搜索对话框始终可见

时间:2013-01-24 19:19:10

标签: android android-layout android-listview search-dialog

是否可以将搜索对话框固定在应用程序活动的顶部?

我遇到的问题是,如果用户点击活动中的其他位置,错误地说,搜索对话框会关闭,用户必须点击搜索电话按钮。

由于我的示例应用是一个搜索应用,我希望它始终位于我的活动顶部。

有没有办法,android API是否允许这样做?

由于

使用代码编辑:

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        onSearchRequested();

        Intent intent = getIntent();

        if (Intent.ACTION_SEARCH.equals(intent.getAction())) {
              String query = intent.getStringExtra(SearchManager.QUERY);

              Log.d("search", query);
        }

    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.activity_main, menu);
        return true;
    }

的活动:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:text="@string/hello_world" />

</RelativeLayout>

searchconfig

<?xml version="1.0" encoding="utf-8"?>
<searchable xmlns:android="http://schemas.android.com/apk/res/android"
        android:label="@string/app_name" >
</searchable>

1 个答案:

答案 0 :(得分:0)

由于您控制了Activity中的其他内容,因此您可以确保没有其他元素可点击/可聚焦(搜索字段除外)。

无论如何,如果您向我们展示您遇到问题的实际代码,我们会更有帮助。