我试图将活动主题设置为AlertDialog。我面临的问题是,我找不到一种方法在我的窗口底部放置两个按钮,看起来像AlertDialog的正反两个按钮。
我已经将该行添加到清单中的活动中(我正在使用夏洛克库):

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

这个活动看起来就像一个对话框,但是我找不到一个可以设置在按钮上的主题。我能做什么?

最佳答案

好吧,如果你正在开发一个HC/ICS应用程序,没有夏洛克,答案如下:
https://gist.github.com/2348305
只使用主题

style="?android:attr/buttonBarStyle"

对于集装箱,
style="?android:attr/buttonBarButtonStyle"

对于纽扣

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

对于根布局

07-28 02:33
查看更多