创建自定义对话框(android示例错误?)

时间:2013-11-29 18:47:03

标签: android android-fragments customdialog

一直试图创建客户对话框,我从Android网站复制了源代码。我现在绕着一些东西工作,现在我真的陷入了困境。我不知道代码中的LoginFragment是什么:

...
public class start extends Activity{
Button buttonx;
final Context context = this;
LayoutInflater mInflater;

@Override
protected void onCreate (Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.menu);
}

@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
    AlertDialog.Builder builder = new AlertDialog.Builder(context);
    // Get the layout inflater
    //LayoutInflater inflater = getActivity().getLayoutInflater();
    mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

    // Inflate and set the layout for the dialog
    // Pass null as the parent view because its going in the dialog layout
    builder.setView(mInflater.inflate(R.layout.login, null))
            // Add action buttons
            .setPositiveButton(R.string.signin, new DialogInterface.OnClickListener() {
                @Override
                public void onClick(DialogInterface dialog, int id) {
                    // sign in the user ...
                }
            })
            .setNegativeButton(R.string.cancel, new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int id) {

                    LoginDialogFragment.this.getDialog().cancel();
                }
            });
    return builder.create();
}

当我//注释掉该行时,它说@Override是不必要的,它不能解决任何问题。 抱歉没有问题

3 个答案:

答案 0 :(得分:0)

看看这篇关于android开发者的文章,对我很有用。

http://developer.android.com/guide/topics/ui/dialogs.html

这里也是一个简单的例子:

http://www.mkyong.com/android/android-custom-dialog-example/

答案 1 :(得分:0)

我想你可能已经发现LoginFragment是一个片段,所以你必须创建一个新类并用Fragment类扩展它。你可以在那里放置代码onCreateDialog()。然后按照步骤进行操作。

您将使用此代码来显示它 -

DialogFragment newFragment = new LoginFragment();
newFragment.show(getSupportFragmentManager(), "login");

参考link rochasdv已经分享,你会得到一个更好的主意。问我是否遗漏了什么。

答案 2 :(得分:0)

为要在对话框中显示的视图创建布局文件。 假设您想在对话框中使用textview和按钮:

dialog_box.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<TextView
    android:id="@+id/textview"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:textSize="17sp"
    android:layout_margin="20dp"/>

<Button
    android:id="@+id/button"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:textSize="17sp"
    android:layout_margin="20dp"/>

并在你的java文件中:

    Dialog d = new Dialog(this);
    d.setTitle("No Places found");
    d.setContentView(R.layout.dialog_box);
    d.getWindow().getAttributes().width = WindowManager.LayoutParams.FILL_PARENT;
    d.show();
祝你好运