0

メイン レイアウト表示用 ( activity_main.xml ) とカスタム ダイアログ表示用 ( dialog_custom.xml ) の 2 つのレイアウト ファイルがあります。2つのファイルは次のとおりです-

activity_main.xml

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

        <Button android:id="@+id/btn_1_option"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Show Alert with 1 Button"
            android:padding="10dip"
            android:layout_marginTop="40dip">
        </Button>

        <Button android:id="@+id/btn_2_option"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Show Alert With 2 Buttons"
            android:padding="10dip">
        </Button>

        <Button android:id="@+id/btn_3_option"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Show Alert with 3 Buttons"
            android:padding="10dip">
        </Button>

        <Button android:id="@+id/btn_custom_layout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Show Alert with Custom Layout - From XML"
            android:padding="10dip">
        </Button>

    </LinearLayout>

dialog_custom.xml

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

        <TextView
            android:id="@+id/dialog_info"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:padding="10dp"
            android:background="@android:color/holo_orange_dark"
            android:text="@string/dialog_text"/>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="40dp"
            android:layout_below="@id/dialog_info">

            <Button
                android:id="@+id/dialog_cancel"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="0.50"
                android:background="#3333"
                android:text="Cancel"/>

            <Button
                android:id="@+id/dialog_ok"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="0.50"
                android:background="#888888"
                android:text="Agree"/>
        </LinearLayout>
    </RelativeLayout>

そして、私がメインクラスで行ったことは -

    public class Activity_Main extends Activity
    {
        Context context = Activity_Main.this;
        @Override
        protected void onCreate(Bundle savedInstanceState)
        {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);

            final Dialog dialog = new Dialog(context);
            dialog.setContentView(R.layout.dialog_main);
            dialog.setTitle(R.string.dialog_title);
            dialog.show();
        }
    }

だから、私はこのようなダイアログを取得します-

出力

ここで、このCANCELおよびAGREEボタンのクリック オプションを追加したいと思います。しかし、私が望むなら、私は強制的に近づきます。誰でも私を助けてもらえますか、どうすればいいですか?

助けてくれてありがとう。

4

3 に答える 3

0

キャンセルして同意するクリック コードが見つかりませんでしたが、次のことを試してください。

 Button cancel=(Button)dialog.findViewById(R.id.dialog_cancel);
cancel.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub
//              do your work

            }
        });

問題が解決しない場合は、エラーを投稿してコードをクリックしてください。

于 2015-08-31T18:36:43.930 に答える