如何将搜索框放在顶部,就像在android中的默认浏览器一样?我不是指搜索小部件,我的意思是在活动顶部持久的搜索对话框。
答案 0 :(得分:0)
您可以设置不同的布局,在顶部,您可以使用android:height="wrap_content"
和android:width="fill_parent"
设置LinearLayout
并使用权重10设置父LinearLayout,并且搜索栏LinearLayout将具有android:weight="1"
第二个布局的权重为9
所以例如:
Linearlayout (weightsum=10)
LinearLayout (with searchbar) weight=1
LinearLayout (with the other content) weight = 9