在一个seflmade工具栏中使用onClick的ImageButton
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在一个seflmade工具栏中使用onClick的ImageButton相关的知识,希望对你有一定的参考价值。
您好:)我想将onClick方法添加到工具栏中的ImageButton。
它使用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
room activity.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();
}
注意:我在我的AndroidManifest.xml中添加了android:parentActivityName=".RoomActivity"
。
答案
您应该将View参数传递给函数,以便像这样使用onClick from XML。
public void backToMain(View v){
以上是关于在一个seflmade工具栏中使用onClick的ImageButton的主要内容,如果未能解决你的问题,请参考以下文章