自制工具栏中带有 onClick 的 ImageButton

ImageButton with onClick in a seflmade Toolbar

你好 :) 我想给工具栏中的 ImageButton 添加一个 onClick 方法。

它可以使用 onBackPressed() 但不能通过 ImageButton-Click。该应用程序崩溃了,但我无法从控制台读取错误消息,而且我还没有弄清楚如何正确调试它。

你能帮我看看可能遗漏了什么吗? 非常感谢:)

toolbar_room.xml

<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar_room"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:contentInsetLeft="0dp"
app:contentInsetStart="0dp">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ImageButton
        android:layout_width="?attr/actionBarSize"
        android:layout_height="match_parent"
        android:background="@drawable/ic_back"
        android:id="@+id/btn_roomBack"
        android:onClick="backToMain"/>
</LinearLayout>

activity_room.xml

<android.support.v7.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="de.hftl.smartcast.RoomActivity"
android:orientation="vertical">

<include layout="@layout/toolbar_room"></include>
//Code

RoomActivity.java

public class RoomActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_room);
}
public void backToMain(){
    AlertDialog.Builder alertDlg = new AlertDialog.Builder(this);
    alertDlg.setMessage("Text");
    alertDlg.setCancelable(false);

    alertDlg.setPositiveButton("yeah", new DialogInterface.OnClickListener() {
        @Override
        public void onClick(DialogInterface dialogInterface, int i) {
            RoomActivity.super.onBackPressed();
        }
    });
    alertDlg.setNegativeButton("nope", new DialogInterface.OnClickListener() {
        @Override
        public void onClick(DialogInterface dialogInterface, int i) {
        }
    });
    alertDlg.create().show();
}

注意:我添加了android:parentActivityName=".RoomActivity" 到我的 AndroidManifest.xml.

您应该像这样将 View 参数传递给函数以使用 XML 中的 onClick。

public void backToMain(View v){