如何将搜索框放置在顶部,就像在 android 的默认浏览器中一样?我不是指搜索小部件,我指的是在活动顶部持续存在的搜索对话框。
问问题
201 次
1 回答
0
您可以设置不同的布局,在最上面的布局中,您可以使用和设置一个 LinearLayoutandroid:height="wrap_content"
并android:width="fill_parent"
设置一个权重和为 10 的父 LinearLayout 并且 Searchbar LinearLayout 将具有android:weight="1"
第二个布局的权重为 9
所以例如:
Linearlayout (weightsum=10)
LinearLayout (with searchbar) weight=1
LinearLayout (with the other content) weight = 9
于 2012-05-31T17:49:06.283 回答