انجمن وب سایت مشاوره در زمینه پروژه های برنامه نویسی و طراحی وب سایتهای تجاری
نوشتن رخداد کلیک برای ImageButton در اندروید - نسخه‌ی قابل چاپ

+- انجمن وب سایت مشاوره در زمینه پروژه های برنامه نویسی و طراحی وب سایتهای تجاری (http://forum.a00b.com)
+-- انجمن: سوالها و مقاله های آموزشی (/forumdisplay.php?fid=1)
+--- انجمن: آموزش حرفه ای برنامه نویسی اندروید استدیو Android Studio (/forumdisplay.php?fid=14)
+--- موضوع: نوشتن رخداد کلیک برای ImageButton در اندروید (/showthread.php?tid=188)



نوشتن رخداد کلیک برای ImageButton در اندروید - ali - 09-20-2018 07:49 AM

برای ایجاد رخداد کلیک برای ImageButton در Android Studio از متد زیر می توان استفاده کرد:

کد:
ImageButton imageButton = (ImageButton)findViewById(R.id.IBtnNext);
        imageButton.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
              
// محل کد ها برای رخداد کلیک

            }
        });

و کد XML کلید ایجاد شده به شرح ذیل می باشد:

کد:
<ImageButton
        android:id="@+id/IBtnNext"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
        android:src="@android:drawable/ic_media_rew"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintStart_toStartOf="parent" />