每次触摸屏幕上的空白区域时,我的应用都会在mainActivity屏幕上崩溃。我有三个按钮,两个radioButtons,一个textview和两个editText字段;每当我触摸这些我的应用程序工作正常,但如果我触摸空白区域,那么整个应用程序崩溃。我的minSDk为15,targetSDK为23.我使用SQLiteOpenHelper将用户添加到数据库。用户具有名称,密码和类型(买方或卖方)。 这是我的代码:
MainActivity.java
package com.example.cristiannavarrete.my_shopping;
import android.content.Context;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.CompoundButton;
import android.widget.EditText;
import android.widget.RadioButton;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity {
// private String userName;
// private String userPass;
MyDBHandler db;
private Button logIn, addUser, clear;
private EditText userField, passField;
private RadioButton buyer;
private RadioButton seller;
//Singleton instance = Singleton.getInstance();
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
db = new MyDBHandler(this, null, null, 4);
logIn = (Button) findViewById(R.id.button);
addUser = (Button) findViewById(R.id.button2);
clear = (Button) findViewById(R.id.clear);
userField = (EditText) findViewById(R.id.editText);
passField = (EditText) findViewById(R.id.editText2);
buyer = (RadioButton) findViewById(R.id.radioButton);
seller = (RadioButton) findViewById(R.id.radioButton2);
logIn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (db.hasUser(userField.getText().toString())) {
Toast.makeText(getApplicationContext(), "Log In successful", Toast.LENGTH_SHORT).show();
}
else
Toast.makeText(getApplicationContext(), "Log In bad", Toast.LENGTH_SHORT).show();
}
});
addUser.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
User user = new User(userField.getText().toString(), passField.getText().toString(), "buyer");
user.setId(db.addUser(user));
Toast.makeText(getApplicationContext(), Integer.toString(user.getId()), Toast.LENGTH_SHORT).show();
}
});
seller.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
if (seller.isChecked())
buyer.setChecked(false);
}
});
buyer.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
if (buyer.isChecked())
seller.setChecked(false);
}
});
clear.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
db.deleteAllRows();
}
});
}
}
activity_main.xml中
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity"
android:onClick="clear">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/LogIn"
android:id="@+id/textView"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="45dp"
android:textStyle="bold"
android:textColor="#5e00ff"
android:textSize="25sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/UserName"
android:id="@+id/textView2"
android:layout_marginTop="42dp"
android:layout_below="@+id/textView"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:textStyle="bold" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/Pass"
android:id="@+id/textView3"
android:layout_below="@+id/textView2"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_marginTop="60dp"
android:textStyle="bold" />
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/editText"
android:layout_below="@+id/textView2"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="textPassword"
android:ems="10"
android:id="@+id/editText2"
android:layout_centerVertical="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/LogInButton"
android:id="@+id/button"
android:layout_below="@+id/editText2"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_marginTop="29dp" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/AddUser"
android:id="@+id/button2"
android:layout_alignTop="@+id/button"
android:layout_toRightOf="@+id/textView"
android:layout_toEndOf="@+id/textView" />
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/NewBuyer"
android:id="@+id/radioButton"
android:textSize="15sp"
android:layout_below="@+id/button2"
android:layout_centerHorizontal="true" />
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/NewSeller"
android:id="@+id/radioButton2"
android:layout_below="@+id/radioButton"
android:layout_alignLeft="@+id/radioButton"
android:layout_alignStart="@+id/radioButton"
android:textSize="15sp" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/clearDatabase"
android:id="@+id/clear"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true" />
</RelativeLayout>
的AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.cristiannavarrete.my_shopping" >
<application
android:name=".global"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme" >
<activity android:name=".MainActivity" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".SellerMainPage"
android:label="Seller Main Page">
</activity>
<activity
android:name=".BuyerMainPage"
android:label="Buyer Main Page">
</activity>
<activity
android:name=".ItemInfoPage"
android:label="Item Info Page">
</activity>
</application>
</manifest>
任何人都可以告诉我为什么会这样。在此先感谢您的帮助!
答案 0 :(得分:3)
请参阅x
中的android:onClick="clear"
,但未在代码中定义任何名为RelativeLayout
的函数。因此,
删除
clear
每当您按下android:onClick="clear"
时,RelativeLayout
中的会导致应用崩溃。
答案 1 :(得分:0)
删除android:onClick="clear"
中的RelativeLayout
。您必须在活动中定义清除方法才能使用此方法。
答案 2 :(得分:0)
在布局中使用属性
`android:onClick="clear"
您必须在您的Activity中实施一个同名的方法
public void clear(View v) {
// do something
}
传递给方法的View
是对单击的窗口小部件的引用。
当用户点击该视图时,Android系统会调用活动的clear(View)
方法。
注意:如果您使用的是片段,Android将不会在片段中查找onClick方法,而只会在当前的Activity中查找。
您可以使用以下方法实现相同目标:
View myClickableView = findViewById(R.id.myView);
myClickableView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
clear(v);
}
});
public void clear(View v) {
// do something
}