9

我正在尝试将活动主题化为AlertDialog. 我面临的问题是我找不到在窗口底部放置两个按钮的方法,这两个按钮看起来像AlertDialog

我已经将该行添加到清单中的我的活动中(我正在使用 Sherlock 库):

android:theme="@style/Theme.Sherlock.Dialog"

Activity 看起来完全像一个对话框,但我找不到要在按钮上设置的主题。我能做什么?

4

1 回答 1

12

好的,如果您正在为 HC/ICS 开发应用程序,而没有 Sherlock,答案就在这里: https ://gist.github.com/2348305

只是主题使用

style="?android:attr/buttonBarStyle"

对于容器,

style="?android:attr/buttonBarButtonStyle"

用于按钮

android:divider="?android:attr/dividerHorizontal"
android:showDividers="middle"

对于根布局

于 2012-06-28T22:28:21.863 回答