我是android的新手,在android上运行searchView controll,我在我的活动中放了一个searchView,我的问题是当我执行任何动作时我的键盘打开因为我的searchView默认打开,有谁能告诉我怎么样默认情况下myy活动开始时我的serachView关闭了吗?我的代码如下:
<?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="match_parent"
android:orientation="vertical" >
<SearchView
android:id="@+id/searchViewSearchPosts"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:showAsAction="collapseActionView|ifRoom"
android:iconifiedByDefault="true"
android:queryHint="Search.." >
</SearchView>
<FrameLayout
android:id="@+id/fragmentTimeline"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentBottom="true"
android:layout_marginTop="0dp" />
</LinearLayout>
的manifest.xml
<activity
android:name="one.tusk.stush.SearchPostActivity"
android:parentActivityName="one.tusk.stush.activities.MainActivity"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateHidden|adjustNothing"
android:label="Back">
>
</activity>