下面的图像基本上是我想要实现的,这直接来自 eclipse 作为我的 dialog_layout.xml
我想膨胀一个自定义对话框并将其放在屏幕右侧作为菜单。每次,我都尝试展示这一点DialogFragment
,下面的布局以屏幕中心为中心。(onCreateDialog()
`DialogFragment1 的代码在图像下方。
有什么办法可以做到这一点?我是否必须使用对话框主题创建活动?
@Override
public Dialog onCreateDialog(Bundle savedInstanceState)
{
// Create a new Dialog using the AlertDialog Builder
AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
View background = getActivity().getLayoutInflater().inflate(R.layout.dialog_layout, null);
builder.setView(background);
return builder.create();
}
任何帮助,将不胜感激!
干杯