【发布时间】:2021-04-26 16:55:34
【问题描述】:
我是安卓新手。我想在弹出窗口中按下按钮但退出并显示时打印一条消息(使用 Log.i)
java.lang.IllegalStateException: 找不到方法 deletemtd(View) 在 android:onClick 属性的父或祖先上下文中定义 在视图类 com.google.android.material.button.MaterialButton 上 id '按钮'
我的onclick方法编码
public void onButtonShowPopupWindowClick(View view) {
// inflate the layout of the popup window
LayoutInflater inflater = (LayoutInflater) getSystemService(LAYOUT_INFLATER_SERVICE);
View popupView = inflater.inflate(R.layout.activity_output_calculation, null);
// create the popup window
int width = LinearLayout.LayoutParams.MATCH_PARENT;
int height = LinearLayout.LayoutParams.WRAP_CONTENT;
boolean focusable = true; // lets taps outside the popup also dismiss it
final PopupWindow popupWindow = new PopupWindow(popupView, width, height, focusable);
// show the popup window
// which view you pass in doesn't matter, it is only used for the window tolken
popupWindow.showAtLocation(view, Gravity.CENTER, 0, 0);
// dismiss the popup window when touched
popupView.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
popupWindow.dismiss();
return true;
}
});
}
弹出布局的activity_output_calculation.xml 代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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="wrap_content"
android:background="@color/myRED"
android:orientation="vertical"
tools:context=".Output_calculation">
<Button
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="deletemtd"
android:text="Button" />
</LinearLayout>
弹窗的Java代码
public class Output_calculation extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_output_calculation);
}
public void deletemtd(View view) {
Log.i("tag nema", "deletemtd:");
}
}
我想在按下按钮时在运行控制台中打印此日志消息。
【问题讨论】:
标签: java android runtime-error popupwindow illegalstateexception