在我当前的Android应用程序中,我有一个显示android.support.v4.app.DialogFragment的屏幕.
此DialogFragment视图包含以下UI组件
HEADING
== Sub Heading
== NestedScrollView
==== RecyclerView
==== RadioGroup
==== Spinner
==== EditText
==== Action Buttons
DialogFragment使用Style配置为全屏,如下所示: –
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setStyle(DialogFragment.STYLE_NO_TITLE,R.style.AppDialogTheme);
}
我的对话框风格是
原文链接:https://www.f2er.com/android/430245.html