我最近一直在玩弄这些令人惊叹的库ActionBarSherlock
:HoloEverywhere
和SlidingMenu
.
然后我偶然发现了这个奇怪的问题:当我在视图中添加一个 EditText 时,HoloEverywhere 主题工作正常。但是当我将 EditText 添加到 ActionBarSherlock 时,HoloEverywhere 主题不会覆盖默认主题。
这就是我将 EditText 添加到 ActionBarSherlock 的方式:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="wrap_content">
<EditText
android:id="@+id/collapsibleEditText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/widget_searchview_title"
android:imeOptions="actionSearch"
android:inputType="text" android:paddingRight="35dip" />
<Button
android:id="@+id/clearButton"
android:layout_width="30dip"
android:layout_height="30dip"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="5dip"
android:background="@drawable/navigation_cancel" />
</RelativeLayout>
和
menu.add("Search")
.setIcon(R.drawable.ic_action_search)
.setActionView(R.layout.collapsible_edittext)
.setShowAsAction(MenuItem.SHOW_AS_ACTION_ALWAYS |
MenuItem.SHOW_AS_ACTION_COLLAPSE_ACTION_VIEW);
这就是在模拟器上运行的样子(因为我手边没有预蜂窝设备):
这是一个已知的问题?我确信我在实施过程中搞砸了。谁能指导我解决这个问题?谢谢。