突然,我的应用程序中的所有alertdialogs和listview变为显示内联文本。 此问题出现在Android 2.x上。 在android 4.x上一切都很好。 我使用actionbarsherlock。 我没有为对话框使用自定义布局。 我不知道哪里有问题: - (
AlertDialog错误:http://imgur.com/E2yuEIF ListView错误:http://imgur.com/zYzOry5
创建一个对话框:
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setMessage(R.string.is_check)
.setCancelable(false).setPositiveButton(R.string.yes, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
go2check();
}})
.setNegativeButton(R.string.no, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.cancel();
}
});
AlertDialog alert = builder.create();
alert.show();
这个问题是关于android 2.x的alertdialogs,listviews,progressbars,button等..
答案 0 :(得分:0)
我放入AndroidManifest专栏:
android:theme="@style/android:Theme.Holo"
一切都很好。 谢谢大家。