我将旧的Dialogs切换到DialogFragment,但主题和样式似乎不起作用。
我正在使用兼容性库v4中的DialogFragment,而在onCreate方法中我尝试调用setStyle(style,theme);有很多不同的主题,但对话框总是在运行Android 4.0.3的模拟器中显示为“旧”对话框(即,它没有在Holo主题中显示)。
还有什么我应该做的吗?使用兼容性库是否会禁用Holo主题或其他内容?如果是这种情况,我应该创建两个DialogFragments,一个用于旧版本,一个用于较新版本吗?
谢谢!
这是我的对话框的(简化)代码。我已经尝试了Theme_Holo_Dialog_NoActionBar和Theme_DeviceDefault_Dialog_NoActionBar,但Android 4模拟器始终将对话框显示为“旧”对话框,而不是使用Holo主题。我究竟做错了什么? :(
[...]
import android.support.v4.app.DialogFragment;
[...]
public class AlertDialogFragment extends DialogFragment {
public static AlertDialogFragment newInstance(int id) {
AlertDialogFragment f = new AlertDialogFragment();
Bundle args = new Bundle();
args.putInt("id", id);
f.setArguments(args);
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
int style = DialogFragment.STYLE_NORMAL, theme = 0;
theme = android.R.style.Theme_Holo_Dialog_NoActionBar;
setStyle(style, theme);
}
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
mId = getArguments().getInt("id");
AlertDialog.Builder builder = new AlertDialog.Builder(getActivity())
.setTitle(mTitle)
.setMessage(mMessage)
.setPositiveButton(getString(R.string.btn_ok), new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dismiss();
}
});
return builder.create();
}
答案 0 :(得分:48)
您不应将AlertDialog.Builder(Context,int)构造函数与支持库一起使用,因为它仅在API 11之后可用。
要在对话框中设置主题,请使用ContextThemeWrapper,如下所示:
ContextThemeWrapper context = new ContextThemeWrapper(getActivity(), android.R.style.Theme_Holo_Dialog_NoActionBar);
AlertDialog.Builder builder = new AlertDialog.Builder(context);
答案 1 :(得分:28)
我相信你需要在实际的Dialog而不是Fragment
上设置主题使用此构造函数创建AlertDialog:
AlertDialog.Builder(Context context, int theme)
即
AlertDialog.Builder builder = new AlertDialog.Builder(getActivity(), theme)
答案 2 :(得分:18)
我只是浪费了很多时间,但我终于找到了一种完全在xml中完成此操作的方法。
在应用程序主题中,Dialogs实际上是分开的主题。因此,要使用绿色按钮和绿色EditText提示设置所有DialogFragments的样式,您可以制作如下样式:
<style name="DialogTheme" parent="@android:style/Theme.Holo.Light.Dialog">
<item name="android:buttonStyle">@style/button_green</item>
<item name="android:textColorHint">@color/green</item>
</style>
然后将此主题作为dialogTheme
添加到您的应用程序主题中<style name="MyTheme" parent="android:Theme.Holo.Light">
<item name="android:dialogTheme">@style/DialogTheme</item>
</style>
非常感谢任何写{{}} {}}给我展示我一直在寻找的道路的人!
答案 3 :(得分:2)
这是一个更新的答案,使用目标SDK 23和min SDK 14,这段代码非常适合我。
问题代码的主要变化是在构造函数中设置主题,仅覆盖onCreateDialog()
,并使用v7支持库中的AlertDialog类。
使用此代码,绿色文本平面(无边框)按钮显示在4.4.4上,而不是带边框的默认灰色按钮。
import android.support.v7.app.AlertDialog;
import android.app.Dialog;
import android.support.v4.app.DialogFragment;
import android.content.DialogInterface;
import android.os.Bundle;
public class MyDialog extends DialogFragment {
String message;
public MyDialog(String m) {
message = m;
int style = DialogFragment.STYLE_NORMAL, theme = 0;
theme = android.R.style.Theme_Holo_Dialog_NoActionBar;
setStyle(style, theme);
}
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
return new AlertDialog.Builder(getActivity())
.setMessage(message)
.setPositiveButton("OK",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
((EnterPhoneNumberActivity)getActivity()).doPositiveClick();
}
}
)
.setNegativeButton("EDIT",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
((EnterPhoneNumberActivity)getActivity()).doNegativeClick();
}
}
)
.create();
}
}
AppCompatActivity中的用法:
String message = "test";
if (message != null) {
DialogFragment newFragment = new MyDialog(message);
newFragment.show(getSupportFragmentManager(), "dialog");
}
答案 4 :(得分:-4)
您应该在“onCreateView”中编写这些代码。
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
getDialog().getWindow().requestFeature(Window.FEATURE_NO_TITLE);
View view = inflater.inflate(R.layout.dialog_your_theme, container);
return view;
}