Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

use "onclick" in properties in layout for dialogs android

I have a Activity like this:

TextView txt_bank = (TextView) findViewById(R.id.txt_search_bank);
    txt_bank.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View arg0) {
            dialog_bank = new Dialog(Activity_Search2.this);

            dialog_bank.getWindow().requestFeature(Window.FEATURE_NO_TITLE);
            dialog_bank.setContentView(R.layout.list_bank);
            dialog_bank.show();

now in the list_bank.xml I have about 20 image that I want to set their onClick field (in layout in properties window) to a method. the problem is that my method can't be find because this method should be in layout's Activity but this is a dialog and don't have any activity please help me how to this use onClick ?

like image 672
Sadegh Avatar asked Mar 01 '14 16:03

Sadegh


1 Answers

I am not sure that is absolute answer of your question. but i think may be your question's answer became like this. such as

Please follow this step.

1 Android Layout Files

File : res/layout/main.xml

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

    <Button
        android:id="@+id/buttonShowCustomDialog"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Show Custom Dialog" />

</LinearLayout>

File : res/layout/custom.xml

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

    <ImageView
        android:id="@+id/image"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginRight="5dp" />

    <TextView
        android:id="@+id/text"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:textColor="#FFF" 
        android:layout_toRightOf="@+id/image"/>/>

     <Button
        android:id="@+id/dialogButtonOK"
        android:layout_width="100px"
        android:layout_height="wrap_content"
        android:text=" Ok "
        android:layout_marginTop="5dp"
        android:layout_marginRight="5dp"
        android:layout_below="@+id/image"
        />

</RelativeLayout>
  1. Activity

File : MainActivity.java

public class MainActivity extends Activity {

    final Context context = this;
    private Button button;

    public void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        button = (Button) findViewById(R.id.buttonShowCustomDialog);

        // add button listener
        button.setOnClickListener(new OnClickListener() {

          @Override
          public void onClick(View arg0) {

            // custom dialog
            final Dialog dialog = new Dialog(context);
            dialog.setContentView(R.layout.custom);
            dialog.setTitle("Title...");

            // set the custom dialog components - text, image and button
            TextView text = (TextView) dialog.findViewById(R.id.text);
            text.setText("Android custom dialog example!");
            ImageView image = (ImageView) dialog.findViewById(R.id.image);
            image.setImageResource(R.drawable.ic_launcher);

            Button dialogButton = (Button) dialog.findViewById(R.id.dialogButtonOK);
            // if button is clicked, close the custom dialog
            dialogButton.setOnClickListener(new OnClickListener() {
                @Override
                public void onClick(View v) {
                    dialog.dismiss();
                }
            });

            dialog.show();
          }
        });
    }
}

Best of luck!

like image 87
nurealam11 Avatar answered Nov 12 '22 07:11

nurealam11