SearchView 使用

//折合SearchView
searchView.setIconified(true);


设置SearchView 展开后的视图大小 maxWidth 这个属性来设置

 android:maxWidth="500dp"

    <SearchView
        android:id="@+id/searchView1"
        android:maxWidth="500dp"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:queryHint="搜索歌曲" >


你可能感兴趣的:(SearchView 使用)