我的数据库应用已停止工作,无法打开

时间:2018-05-29 07:41:50

标签: java android oop android-sqlite

我目前正在开发一个Android Studio应用程序,该应用程序利用可以存储购买汽车的客户记录的SQLite数据库,一旦点击ADD按钮,应用就会停止。显然,有一个空对象引用。该应用程序有一个MainActivity,它有一个添加按钮,允许用户添加客户数据库条目。单击时,应用程序应转到CustomerRcrdActivity以允许数据库条目,用户应该能够添加,查看,更新或删除条目,这些条目应显示在屏幕上。

我正在学习如何为Android创建应用,所以请善待。我不是要求你为我做任何事情,但请指出我正确的方向。我到处寻找输入,但我担心我会忽略逻辑错误,我可以使用第二组眼睛。

非常感谢有关此事的任何意见或提示。

非常感谢,

下面是我怀疑可能有问题的代码,(我将包括XML以防万一我做了一些不好的事情)。

content_main.xml(它包括我希望在添加条目时更新的列表视图)如果有一种更简单的方法,我不是一成不变的。

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 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"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".MainActivity"
tools:showIn="@layout/activity_main">

<TextView
    android:id="@+id/ContentMain_title"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:fontFamily="sans-serif-smallcaps"
    android:text="@string/content_main_title"
    android:textAlignment="center"
    android:textSize="20sp"
    android:textStyle="bold"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintVertical_bias="0.027" />

<Button
    android:id="@+id/button_CR_add"
    android:layout_width="112dp"
    android:layout_height="wrap_content"
    android:layout_marginBottom="416dp"
    android:layout_marginEnd="8dp"
    android:layout_marginTop="7dp"
    android:onClick="buttonClicked"
    android:text="@string/ContentMain_button_CD_add"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHorizontal_bias="0.054"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/ContentMain_title"
    app:layout_constraintVertical_bias="0.022" />

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="486dp"
    android:layout_marginTop="8dp"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/button_CR_add">

    <ListView
        android:id="@+id/listView"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</LinearLayout>
</android.support.constraint.ConstraintLayout>

CustomerRcrdActivity的XML已被忽略

CustomerRcrdActivity.java

public class CustomerRcrdActivity extends AppCompatActivity
{

private EditText FName, LName, CarMake, CarModel, CarCost;
private String F_Name;
private String L_Name;
private String Car_Make;
private String Car_Model;
private double d_Car_Cost;
private DatabaseHandler dh;
private dataAdapter da;
private Customer dataModel;
private ListView lv;
private long mId;

//<<<<<<<<<< new class variables
private String original_FName, original_LName, original_CarMake, original_CarModel, original_CarCost;
private boolean mLoaded = false;
private Button mUpdateButton;
private Button mAddButton;
private Button mDeleteButton;
private ArrayList<Customer> mCustomers = new ArrayList<>();
private List<EditText> mAlleditTexts = new ArrayList<>();

@Override
protected void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_customer_rcrd);

    // GET Intent THAT STARTED ACTIVITY
    Intent intent = getIntent();

    // INSTANTIATE DATABASE HANDLER
    dh = new DatabaseHandler(this);

    FName = findViewById(R.id.editText2_FName);
    LName = findViewById(R.id.editText2_LName);
    CarMake = findViewById(R.id.editText2_CarMake);
    CarModel = findViewById(R.id.editText2_CarModel);
    CarCost = findViewById(R.id.editText2_CarCost);
    lv = findViewById(R.id.listView);
    //<<<<<<<<<<< ADDED
    mAlleditTexts.add(FName);
    mAlleditTexts.add(LName);
    mAlleditTexts.add(CarMake);
    mAlleditTexts.add(CarModel);
    mAlleditTexts.add(CarCost);

    //<<<<<<<<<< END OF ADDED

    Button mViewButton = findViewById(R.id.button_CR_view);
    mAddButton = findViewById(R.id.button_CR_add);
    mUpdateButton = findViewById(R.id.button_CR_update);
    mDeleteButton = findViewById(R.id.button_CR_delete);

    mViewButton.setVisibility(View.GONE);                        // never Show and free screen space
    mViewButton.setText(R.string.mViewButton_setText);           // Hijack View Button for clear data
    mViewButton.setVisibility(View.VISIBLE);                     // Show the View (now CLEAR)
    mAddButton.setEnabled(false);                                // Can't click Add as nothing to add
    mUpdateButton.setEnabled(false);                             // Can't click Update nothing to update
    mDeleteButton.setEnabled(false);                             // Can't click Delete as nothing to delete
    setOriginalValues();
    ShowRecords();                                               //<<<< Always show the list no need for View button
    setEditTextFocusChangedListener(mAlleditTexts);
}

//<<<<<<<<<< NEW METHOD
private void setEditTextFocusChangedListener(List<EditText> edit_texts)
{
    for (EditText e: edit_texts)
    {
        e.setOnFocusChangeListener(new View.OnFocusChangeListener()
        {
            @Override
            public void onFocusChange(View view, boolean b)
            {
                if (areOriginalValuesChanged())
                {
                    if (mLoaded)
                    {
                        mUpdateButton.setEnabled(true);
                        mDeleteButton.setEnabled(false);
                        mAddButton.setEnabled(false);
                    } else
                    {

                    }
                } else
                {
                    if (!mLoaded)
                    {
                        mAddButton.setEnabled(true);
                    } else
                    {
                        mAddButton.setEnabled(false);
                    }
                }
            }
        });
    }
}

//<<<<<<<<<< NEW METHOD
private void setOriginalValues()
{
    original_FName = FName.getText().toString();
    original_LName = LName.getText().toString();
    original_CarMake = CarMake.getText().toString();
    original_CarModel = CarModel.getText().toString();
    original_CarCost = CarCost.getText().toString();
}

//<<<<<<<<<< NEW METHOD
private boolean areOriginalValuesChanged()
{
    /*if (original_FName.equals(FName.getText().toString())
            && original_LName.equals(LName.getText().toString())
            && original_CarMake.equals(CarMake.getText().toString())
            && original_CarModel.equals(CarModel.getText().toString())
            && original_CarCost.equals(CarCost.getText().toString())
            )
    {
        return false;
    }
    return true;*/
    return !original_FName.equals(FName.getText().toString())
            || !original_LName.equals(LName.getText().toString())
            || !original_CarMake.equals(CarMake.getText().toString())
            || !original_CarModel.equals(CarModel.getText().toString())
            || !original_CarCost.equals(CarCost.getText().toString());
}

//<<<<<<<<<< NEW METHOD
private void clearEditTexts(List<EditText> editTexts)
{
    for (EditText e: editTexts)
    {
        e.setText("");
    }
    setOriginalValues();
    mLoaded = false;
}

public void buttonClicked(View view)
{
    int id = view.getId();

    switch (id)
    {
        case R.id.button_CR_update:
            // CALL updateCustomer() TO UPDATE CUSTOMER RECORDS
            updateCustomer();
            mLoaded = false;
            break;

        case R.id.button_CR_add:
            // CALL addCustomer() TO ADD TO DATABASE
            addCustomer();
            // CLEAR FIELDS
            clearEditTexts(mAlleditTexts);
            mLoaded = false;
            break;

        case R.id.button_CR_delete:
            // CALL deleteCustomer() TO DELETE CUSTOMER RECORD
            deleteCustomer();
            break;

        case R.id.button_CR_view:
            // CLEAR FIELDS
            clearEditTexts(mAlleditTexts);
            mLoaded = false;
            mAddButton.setEnabled(true);
            mUpdateButton.setEnabled(false);
            mDeleteButton.setEnabled(false);
            break;
    }
    // UPDATE LIST IRRESPECTIVE OF BUTTON CLICKED
    ShowRecords();
}

// UPDATE CUSTOMER RECORD
private void updateCustomer()
{
    getValues();
    if (dh.updateCustomer(dataModel, mId)>0)
    {
        Toast.makeText(getApplicationContext(), "Customer Updated Successfully", Toast.LENGTH_LONG).show();
    } else
    {
        Toast.makeText(getApplicationContext(), "Customer Not Updated", Toast.LENGTH_LONG).show();
    }
}
// INSERT DATA INTO DATABASE
private void addCustomer()
{
    boolean ok_to_add = true;
    // GET VALUES FROM EditText
    getValues();
    if (F_Name == null || F_Name.length() < 1) ok_to_add = false;
    if (L_Name == null || L_Name.length() < 1) ok_to_add = false;
    if (Car_Make == null || Car_Make.length() < 1) ok_to_add = false;
    if (Car_Model == null || Car_Model.length() < 1) ok_to_add = false;
    if (ok_to_add)
    {
        dh.addCustomers(new Customer(F_Name, L_Name, Car_Make, Car_Model, d_Car_Cost));
        Toast.makeText(getApplicationContext(), "Customer Added Successfully", Toast.LENGTH_LONG).show();
    } else
    {
        Toast.makeText(getApplicationContext(), "Unable To Add - Some Data hasn't been given", Toast.LENGTH_LONG).show();
    }
}
// DELETE CUSTOMER RECORD
private void deleteCustomer()
{
    getValues();
    if (dh.deleteCustomer(mId))
    {
        Toast.makeText(getApplicationContext(), "Customer Deleted Successfully", Toast.LENGTH_LONG).show();
    } else
    {
        Toast.makeText(getApplicationContext(), "Customer Not Deleted", Toast.LENGTH_LONG).show();
    }
}

// FUNCTION TO GET VALUES FROM EditText
private void getValues()
{
    F_Name = FName.getText().toString();
    L_Name = LName.getText().toString();
    Car_Make = CarMake.getText().toString();
    Car_Model = CarModel.getText().toString();
    String car_Cost = CarCost.getText().toString();
    if (car_Cost.length() < 1)
    {
        car_Cost = "0.00";
    }
    d_Car_Cost = Double.parseDouble(car_Cost);

}
// RETRIEVE DATA FROM DATABASE & SET TO LIST VIEW
//<<<<<<<<<< CHANGED QUITE A BIT
// Introduced single Customer List with class scope rather than create new list and adapter every time
//      i.e. mCustomers
// Always clear mCustomers and rebuild from database
// if da (the adapter) is null and therefore hasn't been instantiated, instantiate it just once
// otherwise always notify the adapter that the data (mCustomer) has changed
// Added code to the Listener (added just the once now) to set the edit text's to the values
// of the clicked item in the list (load the data)
//  setting flag to say that the data has just been loaded.
//  also setting the original values to the new data
private void ShowRecords()
{
    mCustomers.clear();
    mCustomers.addAll(dh.getAllCustomers());

    if (da == null)
    {
        da = new dataAdapter(this, mCustomers);
        lv.setAdapter(da);

        lv.setOnItemClickListener(new AdapterView.OnItemClickListener()
        {
            @Override
            public void onItemClick(AdapterView<?> parent, View view, int position, long id)
            {
                dataModel = mCustomers.get(position);
                //<<<<<<<<<< Added
                FName.setText(dataModel.getFName());
                LName.setText(dataModel.getLName());
                CarMake.setText(dataModel.get_CarMake());
                CarModel.setText(dataModel.get_CarModel());
                CarCost.setText(String.valueOf(dataModel.get_CarCost()));
                mLoaded = true;
                setOriginalValues();
                mDeleteButton.setEnabled(true);
                mUpdateButton.setEnabled(false);
                mAddButton.setEnabled(false);
                mId = dataModel.getID();
                //<<<<<<<<<< End of Added
                Toast.makeText(getApplicationContext(), String.valueOf(dataModel.getID()), Toast.LENGTH_SHORT).show();
            }
        });
    } else
    {
        da.notifyDataSetChanged();
    }
}
}

DatabaseHandler.java

public class DatabaseHandler extends SQLiteOpenHelper
{
// DATABASE VERSION
private static final int DATABASE_VERSION = 1;
// DATABASE NAME
private static final String DATABASE_NAME = "CARDEALER.db";
// CUSTOMER TABLE NAME
public static final String TABLE_CUSTOMERS = "Customers";


// CUSTOMER TABLE COLUMN NAMES
private static final String KEY_ID = "ID";
private static final String KEY_FNAME = "First";
private static final String KEY_LNAME = "Last";
private static final String KEY_CAR_MAKE = "Make";
private static final String KEY_CAR_MODEL = "Model";
private static final String KEY_CAR_COST = "Cost";

DatabaseHandler(Context context)
{
    super(context, DATABASE_NAME, null, DATABASE_VERSION);
}
// CREATE TABLES
@Override
public void onCreate(SQLiteDatabase dh)
{
    String CREATE_TABLE_CUSTOMERS = "CREATE TABLE " + TABLE_CUSTOMERS + "("
            + KEY_ID +" INTEGER PRIMARY KEY,"
            + KEY_FNAME +" TEXT,"
            + KEY_LNAME +" TEXT,"
            + KEY_CAR_MAKE  +" TEXT,"
            + KEY_CAR_MODEL +" TEXT,"
            + KEY_CAR_COST +" NUMERIC" + ")";
    dh.execSQL(CREATE_TABLE_CUSTOMERS);
}
// UPGRADING DATABASE
@Override
public void onUpgrade(SQLiteDatabase dh, int oldVersion, int newVersion)
{
    // DROP OLDER TABLE IF EXISTED
    dh.execSQL("DROP TABLE IF EXISTS " + TABLE_CUSTOMERS);

    // CREATE TABLES AGAIN
    onCreate(dh);
}
/**
 * All CRUD (CREATE, READ, UPDATE, DELETE) OPERATIONS
 */
// INSERT VALUES TO TABLE CUSTOMERS
public void addCustomers(Customer customer)
{
    SQLiteDatabase dh = this.getReadableDatabase();
    ContentValues values = new ContentValues();

    values.put(KEY_FNAME, customer.getFName());
    values.put(KEY_LNAME, customer.getLName() );
    values.put(KEY_CAR_MAKE, customer.get_CarMake());
    values.put(KEY_CAR_MODEL, customer.get_CarModel());
    values.put(KEY_CAR_COST, customer.get_CarCost());

    dh.insert(TABLE_CUSTOMERS, null, values);
    dh.close();
}
/**
 *GETTING ALL CUSTOMERS
 **/
public List<Customer> getAllCustomers()
{
    List<Customer> customerList = new ArrayList<Customer>();
    // SELECT ALL QUERY
    String selectQuery = "SELECT  * FROM " + TABLE_CUSTOMERS;

    SQLiteDatabase dh = this.getWritableDatabase();
    Cursor cursor = dh.rawQuery(selectQuery, null);

    // LOOP THROUGH ALL ROWS & ADD TO LIST
    if (cursor.moveToFirst())
    {
        do {
            Customer customer = new Customer();
            customer.setID(Integer.parseInt(cursor.getString(0)));
            customer.setFName(cursor.getString(1));
            customer.setLName(cursor.getString(2));
            customer.set_CarMake(cursor.getString(3));
            customer.set_CarModel(cursor.getString(4));
            customer.set_CarCost(cursor.getDouble(5));

            // ADDING CUSTOMER TO LIST
            customerList.add(customer);
        } while (cursor.moveToNext());
    }
    // CLOSE OUT RAW QUERY CALL
    cursor.close();
    // RETURN CUSTOMER LIST
    return customerList;
}
/**
 *UPDATING SINGLE CUSTOMER
 **/
public int updateCustomer(Customer customer, long id)
{
    if (customer == null)
    {
        return 0;
    }
    SQLiteDatabase dh = this.getWritableDatabase();

    ContentValues values = new ContentValues();
    values.put(KEY_FNAME, customer.getFName());
    values.put(KEY_LNAME, customer.getLName());
    values.put(KEY_CAR_MAKE, customer.get_CarMake());
    values.put(KEY_CAR_MODEL, customer.get_CarModel());
    values.put(KEY_CAR_COST, customer.get_CarCost());

    // UPDATING ROW
    return dh.update(TABLE_CUSTOMERS, values, KEY_ID + " = ?",
            new String[] { String.valueOf(id) });
}
/**
 *DELETING SINGLE CUSTOMER
 **/
public boolean deleteCustomer(long Id)
{
    boolean rv = false;
    SQLiteDatabase dh = this.getWritableDatabase();
    rv = (dh.delete(TABLE_CUSTOMERS, KEY_ID + " = ?",
            new String[] { String.valueOf(Id) }) > 0);
    dh.close();
    return rv;
}
}

dataAdapter.java

public class dataAdapter extends ArrayAdapter<Customer>
{


public dataAdapter(Context context, ArrayList<Customer> customers)
{
    super(context, R.layout.list_customers, customers);
    Context context1 = context;
    ArrayList<Customer> mcustomer = customers;
}

public  class  Holder
{
    TextView idV;
    TextView nameFV;
    TextView nameLV;
    TextView carmakeV;
    TextView carmodelV;
    TextView carcostV;
}

@NonNull
@Override
public View getView(int position, View convertView, @NonNull ViewGroup parent)
{
    // GET DATA ITEM FOR THIS POSITION

    Customer data = getItem(position);
    // CHECK IF EXISTING VIEW IS BEING REUSED, OTHERWISE INFLATE VIEW

    // VIEW LOOKUP CACHE STORED IN TAG
    Holder viewHolder;

    if (convertView == null)
    {
        viewHolder = new Holder();
        LayoutInflater inflater = LayoutInflater.from(getContext());
        convertView = inflater.inflate(R.layout.list_customers, parent, false);

        viewHolder.idV = (TextView) convertView.findViewById(R.id.textView3_CustomerID);
        viewHolder.nameFV = (TextView) convertView.findViewById(R.id.textView3_FName);
        viewHolder.nameLV = (TextView) convertView.findViewById(R.id.textView3_LName);
        viewHolder.carmakeV = (TextView) convertView.findViewById(R.id.textView3_CarMake);
        viewHolder.carmodelV = (TextView) convertView.findViewById(R.id.textView3_CarModel);
        viewHolder.carcostV = (TextView) convertView.findViewById(R.id.textView3_CarCost);

        convertView.setTag(viewHolder);
    } else
    {
        viewHolder = (Holder) convertView.getTag();
    }

    viewHolder.nameFV.setText("First Name: " + data.getFName());
    viewHolder.nameLV.setText("Last Name: " + data.getLName());
    viewHolder.carmakeV.setText("Car Make: " + data.get_CarMake());
    viewHolder.carmodelV.setText("Car Model: " + data.get_CarModel());
    viewHolder.carcostV.setText("Car Cost: " + data.get_CarCost());

    // RETURN COMPLETED VIEW TO RENDER ON SCREEN
    return convertView;
}
}

我包括MainActivity,以防我错过了那里的东西。 这是MainActivity.java

public class MainActivity extends AppCompatActivity
{
//public ListView lv;

@Override
protected void onCreate(Bundle savedInstanceState)
{
    // even tried ListView here (R.id.listView....)
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);

    FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
    fab.setOnClickListener(new View.OnClickListener()
    {
        @Override
        public void onClick(View view)
        {
            Snackbar.make(view, "Please, click ADD button to begin! ", Snackbar.LENGTH_LONG)
                    .setAction("Action", null).show();
        }
    });

}

@Override
public boolean onCreateOptionsMenu(Menu menu)
{
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.menu_main, menu);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item)
{
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();

    if (id == R.id.action_about)
    {
        // possibly go to another page
        Toast.makeText(MainActivity.this,
                "SQLite Database App", Toast.LENGTH_LONG).show();
        return true;
    }

    return super.onOptionsItemSelected(item);
}

public void buttonClicked(View view)
{
    // START NEW ACTIVITY WHEN ADD BUTTON CLICKED
    Intent intent = new Intent(this, CustomerRcrdActivity.class);
    startActivity(intent);


}
}

这是Logcat日志:

05-30 09:02:03.253 30145-30145/edu.phoenix.mbl402.week4apppp1943_rev1 E/AndroidRuntime: FATAL EXCEPTION: main
Process: edu.phoenix.mbl402.week4apppp1943_rev1, PID: 30145
java.lang.RuntimeException: Unable to start activity ComponentInfo{edu.phoenix.mbl402.week4apppp1943_rev1/edu.phoenix.mbl402.week4apppp1943_rev1.CustomerRcrdActivity}: java.lang.NullPointerException: Attempt to invoke virtual method 'void android.widget.ListView.setAdapter(android.widget.ListAdapter)' on a null object reference
    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2817)
    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2892)
    at android.app.ActivityThread.-wrap11(Unknown Source:0)
    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1593)
    at android.os.Handler.dispatchMessage(Handler.java:105)
    at android.os.Looper.loop(Looper.java:164)
    at android.app.ActivityThread.main(ActivityThread.java:6541)
    at java.lang.reflect.Method.invoke(Native Method)
    at com.android.internal.os.Zygote$MethodAndArgsCaller.run(Zygote.java:240)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:767)
 Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'void android.widget.ListView.setAdapter(android.widget.ListAdapter)' on a null object reference
    at edu.phoenix.mbl402.week4apppp1943_rev1.CustomerRcrdActivity.ShowRecords(CustomerRcrdActivity.java:276)
    at edu.phoenix.mbl402.week4apppp1943_rev1.CustomerRcrdActivity.onCreate(CustomerRcrdActivity.java:79)
    at android.app.Activity.performCreate(Activity.java:6975)
    at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1213)
    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2770)
    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2892) 
    at android.app.ActivityThread.-wrap11(Unknown Source:0) 
    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1593) 
    at android.os.Handler.dispatchMessage(Handler.java:105) 
    at android.os.Looper.loop(Looper.java:164) 
    at android.app.ActivityThread.main(ActivityThread.java:6541) 
    at java.lang.reflect.Method.invoke(Native Method) 
    at com.android.internal.os.Zygote$MethodAndArgsCaller.run(Zygote.java:240) 
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:767) 

另外,我已经包含了消化修改,再次感谢你!

2 个答案:

答案 0 :(得分:1)

带有一些改进/考虑因素的示例(可能)

下面的代码可能会为您提供一些想法/技巧,并且基于答案(我将包含所有可以帮助您绕开应用程序崩溃的代码)。

第一个改进是在Activity启动时加载ListView。这非常简单,只需调用ShowRecords方法即可。这消除了对“视图”按钮的需要(稍后会看到它被踩到了)。

但是,ShowRecords方法已经彻底改变了。合并适配器的单个实例和源客户列表。

按钮中添加了一些逻辑/智能(原文如此)。那些不适用的是灰色的。 - 最初你不能删除或更新任何东西,你只能添加(添加不添加任何数据被省略)。 - 如果单击列表中的项目,则该数据将加载到EditTexts中,删除按钮是唯一可以单击的按钮。 - 如果更改EditText中的值,则只能单击“更新”按钮。

所有操作都有效,并且还会更新列表(根据上述逻辑可用时)。因此,可以添加,更新和删除记录。

“查看”按钮已被高亮显示,现在为“清除”按钮。这始终可用,将清除EditTexts并将“添加”按钮设置为可用(单击列表项仍会加载该记录的数据)。

为了促进上述操作,已经定义了一些新的类变量,并且还有一些已经从方法变量转移到类变量,例如适配器和客户列表(您已经声明了 da ,因此使用了它。)

绝大多数更改都只针对CustomerRcrdActivity,尽管对DatabaseHelper进行了一些小的更改( long 为id,这是正确的做法,因为id可能会超过最大值 int )。

无论如何,这里是代码: -

CustomerRcrdActivity : -

public class CustomerRcrdActivity extends AppCompatActivity {

    private EditText FName, LName, CarMake, CarModel, CarCost;
    private String F_Name;
    private String L_Name;
    private String Car_Make;
    private String Car_Model;
    private double d_Car_Cost;
    private DatabaseHandler dh;
    private dataAdapter da;
    private Customer dataModel;
    private ListView lv;
    private long mId;

    //<<<<<<<<<< new class variables
    private String original_FName, original_LName, original_CarMake, original_CarModel, original_CarCost;
    private boolean mLoaded = false;
    private Button mViewButton, mUpdateButton, mAddButton, mDeleteButton;
    private ArrayList<Customer> mCustomers = new ArrayList<>();
    private List<EditText> mAlleditTexts = new ArrayList<>();

    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_customer_rcrd);

        // GET Intent THAT STARTED ACTIVITY
        Intent intent = getIntent();

        // INSTANTIATE DATABASE HANDLER
        dh = new DatabaseHandler(this);

        FName = (EditText) findViewById(R.id.editText2_FName);
        LName = (EditText) findViewById(R.id.editText2_LName);
        CarMake = (EditText) findViewById(R.id.editText2_CarMake);
        CarModel = (EditText) findViewById(R.id.editText2_CarModel);
        CarCost = (EditText) findViewById(R.id.editText2_CarCost);

        //<<<<<<<<<<< ADDED
        mAlleditTexts.add(FName);
        mAlleditTexts.add(LName);
        mAlleditTexts.add(CarMake);
        mAlleditTexts.add(CarModel);
        mAlleditTexts.add(CarCost);
        lv = (ListView) findViewById(R.id.lv);
        //<<<<<<<<<< END OF ADDED

        mViewButton = (Button) findViewById(R.id.button_CR_view);
        mAddButton = (Button) findViewById(R.id.button_CR_add);
        mUpdateButton = (Button) findViewById(R.id.button_CR_update);
        mDeleteButton = (Button) findViewById(R.id.button_CR_delete);

        mViewButton.setVisibility(View.GONE); // never Show and free screen space
        mViewButton.setText("CLEAR"); // Hijack View Button for clear data
        mViewButton.setVisibility(View.VISIBLE); // Show the View (now CLEAR)
        mAddButton.setEnabled(false); // Can't click Add as nothing to add
        mUpdateButton.setEnabled(false); // Can't click Update nothing to update
        mDeleteButton.setEnabled(false); // Can't click Delete as nothing to delete
        setOriginalValues();
        ShowRecords(); //<<<< Always show the list no need for View button
        setEditTextFocusChangedListener(mAlleditTexts);
    }

    //<<<<<<<<<< NEW METHOD
    private void setEditTextFocusChangedListener(List<EditText> edit_texts) {
        for (EditText e: edit_texts) {

            e.setOnFocusChangeListener(new View.OnFocusChangeListener() {
                @Override
                public void onFocusChange(View view, boolean b) {
                    if (areOriginalValuesChanged()) {
                        if (mLoaded) {
                            mUpdateButton.setEnabled(true);
                            mDeleteButton.setEnabled(false);
                            mAddButton.setEnabled(false);
                        } else {

                        }
                    } else {
                        if (!mLoaded) {
                            mAddButton.setEnabled(true);
                        } else {
                            mAddButton.setEnabled(false);
                        }
                    }
                }
            });
        }
    }

    //<<<<<<<<<< NEW METHOD
    private void setOriginalValues() {
        original_FName = FName.getText().toString();
        original_LName = LName.getText().toString();
        original_CarMake = CarMake.getText().toString();
        original_CarModel = CarModel.getText().toString();
        original_CarCost = CarCost.getText().toString();
    }

    //<<<<<<<<<< NEW METHOD
    private boolean areOriginalValuesChanged() {
        if (original_FName.equals(FName.getText().toString())
                && original_LName.equals(LName.getText().toString())
                && original_CarMake.equals(CarMake.getText().toString())
                && original_CarModel.equals(CarModel.getText().toString())
                && original_CarCost.equals(CarCost.getText().toString())
                ) {
            return false;
        }
        return true;
    }

    //<<<<<<<<<< NEW METHOD
    private void clearEditTexts(List<EditText> editTexts) {
        for (EditText e: editTexts) {
            e.setText("");
        }
        setOriginalValues();
        mLoaded = false;
    }

    public void buttonClicked(View view)
    {
        int id = view.getId();

        switch (id)
        {
            case R.id.button_CR_update:
                // CALL updateCustomer() TO UPDATE CUSTOMER RECORDS
                updateCustomer();
                mLoaded = false;
                break;

            case R.id.button_CR_add:
                // CALL addCustomer() TO ADD TO DATABASE
                addCustomer();
                clearEditTexts(mAlleditTexts);
                mLoaded = false;

                // START NEW ACTIVITY WHEN ADD BUTTON CLICKED
                //Intent intent = new Intent(this, DatabaseHandler.class);
                //startActivity(intent);

                break;

            case R.id.button_CR_delete:
                // CALL deleteCustomer() TO DELETE CUSTOMER RECORD
                deleteCustomer();
                break;

            case R.id.button_CR_view:
                // CALL viewCustomer() TO VIEW CUSTOMER RECORD
                // START NEW ACTIVITY WHEN ADD BUTTON CLICKED
                //Intent intent2 = new Intent(this, CustomerDBActivity.class);
                //startActivity(intent2);

                // CALL showRecords() TO VIEW CUSTOMER RECORD VIA ListView
                clearEditTexts(mAlleditTexts);
                mLoaded = false;
                mAddButton.setEnabled(true);
                mUpdateButton.setEnabled(false);
                mDeleteButton.setEnabled(false);
                break;
        }
        ShowRecords(); // Update the List irrespective of button clicked
    }


    private void updateCustomer()
    {
        getValues();
         if (dh.updateCustomer(dataModel, mId)>0) {
             Toast.makeText(getApplicationContext(), "Customer Updated Successfully", Toast.LENGTH_LONG).show();
         } else {
             Toast.makeText(getApplicationContext(), "Customer Not Updated", Toast.LENGTH_LONG).show();
         }
    }
    // INSERT DATA INTO DATABASE
    private void addCustomer()
    {
        boolean ok_to_add = true;
        getValues();
        if (F_Name == null || F_Name.length() < 1) ok_to_add = false;
        if (L_Name == null || L_Name.length() < 1) ok_to_add = false;
        if (Car_Make == null || Car_Make.length() < 1) ok_to_add = false;
        if (Car_Model == null || Car_Model.length() < 1) ok_to_add = false;
        if (ok_to_add) {
            dh.addCustomers(new Customer(F_Name, L_Name, Car_Make, Car_Model, d_Car_Cost));
            Toast.makeText(getApplicationContext(), "Customer Added Successfully", Toast.LENGTH_LONG).show();
        } else {
            Toast.makeText(getApplicationContext(), "Unable To Add - Some Data hasn't been given", Toast.LENGTH_LONG).show();
        }
    }

    private void deleteCustomer()
    {
        getValues();
         if (dh.deleteCustomer(mId)) {
             Toast.makeText(getApplicationContext(), "Customer Deleted Successfully", Toast.LENGTH_LONG).show();
         } else {
             Toast.makeText(getApplicationContext(), "Customer Not Deleted", Toast.LENGTH_LONG).show();
         }
    }

    // FUNCTION TO GET VALUES FROM EditText
    private void getValues()
    {

        F_Name = FName.getText().toString();
        L_Name = LName.getText().toString();
        Car_Make = CarMake.getText().toString();
        Car_Model = CarModel.getText().toString();
        String car_Cost = CarCost.getText().toString();
        if (car_Cost.length() < 1) {
            car_Cost = "0.00";
        }
        d_Car_Cost = Double.parseDouble(car_Cost);

    }
    // RETRIEVE DATA FROM DATABASE & SET TO LIST VIEW
    //<<<<<<<<<< CHANGED QUITE A BIT
    // Introduced single Customer List with class scope rather than create new list and adapter everytime
    //      i.e. mCustomers
    // Always clear mCustomers and rebuild from database
    // if da (the adapter) is null and therefore hasn't been instantiated, instantiate it just once
    // otherwsie always notify the adapter that the data (mCustomer) has changed
    // Added code to the Listener (added just the once now) to set the edit text's to the values
    // of the clicked item in the list (load the data)
    //  setting flag to say that the data has just been loaded.
    //  also setting the original values to the new data
    private void ShowRecords()
    {
        mCustomers.clear();
        mCustomers.addAll(dh.getAllCustomers());
        //final ArrayList<Customer> customers = new ArrayList<>(dh.getAllCustomers());
        //final Customer customers = new Customer(dh.getAllCustomers());
        if (da == null) {
            da = new dataAdapter(this, mCustomers);
            //final dataAdapter data = new dataAdapter(this, mCustomers); //<<<< Shouldn't create a new adapter everytime

            lv.setAdapter(da);

            lv.setOnItemClickListener(new AdapterView.OnItemClickListener() {
                @Override
                public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
                    dataModel = mCustomers.get(position);
                    //<<<<<<<<<< Added
                    FName.setText(dataModel.getFName());
                    LName.setText(dataModel.getLName());
                    CarMake.setText(dataModel.get_CarMake());
                    CarModel.setText(dataModel.get_CarModel());
                    CarCost.setText(String.valueOf(dataModel.get_CarCost()));
                    mLoaded = true;
                    setOriginalValues();
                    mDeleteButton.setEnabled(true);
                    mUpdateButton.setEnabled(false);
                    mAddButton.setEnabled(false);
                    mId = dataModel.getID();
                    //<<<<<<<<<< End of Added
                    Toast.makeText(getApplicationContext(), String.valueOf(dataModel.getID()), Toast.LENGTH_SHORT).show();
                }
            });
        } else {
            da.notifyDataSetChanged();
        }
    }
}

<强>数据库处理器

public class DatabaseHandler extends SQLiteOpenHelper
{
    // DATABASE VERSION
    private static final int DATABASE_VERSION = 1;
    // DATABASE NAME
    private static final String DATABASE_NAME = "Car Dealer";
    // PREFERRED THE NAME "STAR DEALERSHIP CUSTOMER DATABASE"
// CUSTOMER TABLE NAME
    public static final String TABLE_CUSTOMERS = "Customers";


    // CUSTOMER TABLE COLUMN NAMES
    private static final String KEY_ID = "ID";
    private static final String KEY_FNAME = "First";
    private static final String KEY_LNAME = "Last";
    private static final String KEY_CAR_MAKE = "Make";
    private static final String KEY_CAR_MODEL = "Model";
    private static final String KEY_CAR_COST = "Cost";

    DatabaseHandler(Context context)
    {
        super(context, DATABASE_NAME, null, DATABASE_VERSION);
    }
    // CREATE TABLES
    @Override
    public void onCreate(SQLiteDatabase dh)
    {
        String CREATE_TABLE_CUSTOMERS = "CREATE TABLE " + TABLE_CUSTOMERS + "("
                + KEY_ID +" INTEGER PRIMARY KEY,"
                + KEY_FNAME +" TEXT,"
                + KEY_LNAME +" TEXT,"
                + KEY_CAR_MAKE  +" TEXT,"
                + KEY_CAR_MODEL +" TEXT,"
                + KEY_CAR_COST +" NUMERIC" + ")";
        dh.execSQL(CREATE_TABLE_CUSTOMERS);
    }
    // UPGRADING DATABASE
    @Override
    public void onUpgrade(SQLiteDatabase dh, int oldVersion, int newVersion)
    {
        // DROP OLDER TABLE IF EXISTED
        dh.execSQL("DROP TABLE IF EXISTS " + TABLE_CUSTOMERS);

        // CREATE TABLES AGAIN
        onCreate(dh);
    }
    /**
     * All CRUD (CREATE, READ, UPDATE, DELETE) OPERATIONS
     */
// INSERT VALUES TO TABLE CUSTOMERS

    public void addCustomers(Customer customer)
    {
        SQLiteDatabase dh = this.getReadableDatabase();
        ContentValues values = new ContentValues();

        values.put(KEY_FNAME, customer.getFName());
        values.put(KEY_LNAME, customer.getLName() );
        values.put(KEY_CAR_MAKE, customer.get_CarMake());
        values.put(KEY_CAR_MODEL, customer.get_CarModel());
        values.put(KEY_CAR_COST, customer.get_CarCost());

        dh.insert(TABLE_CUSTOMERS, null, values);
        dh.close();
    }
    /**
     *GETTING ALL CUSTOMERS
     **/
    public List<Customer> getAllCustomers()
    {
        List<Customer> customerList = new ArrayList<Customer>();
        // SELECT ALL QUERY
        String selectQuery = "SELECT  * FROM " + TABLE_CUSTOMERS;

        SQLiteDatabase dh = this.getWritableDatabase();
        Cursor cursor = dh.rawQuery(selectQuery, null);

        // LOOP THROUGH ALL ROWS & ADD TO LIST
        if (cursor.moveToFirst())
        {
            do {
                Customer customer = new Customer();
                customer.setID(Integer.parseInt(cursor.getString(0)));
                customer.setFName(cursor.getString(1));
                customer.setLName(cursor.getString(2));
                customer.set_CarMake(cursor.getString(3));
                customer.set_CarModel(cursor.getString(4));
                customer.set_CarCost(cursor.getDouble(5));

                // ADDING CUSTOMER TO LIST
                customerList.add(customer);
            } while (cursor.moveToNext());
        }
        // CLOSE OUT RAW QUERY CALL
        cursor.close();
        // RETURN CUSTOMER LIST
        return customerList;
    }
    /**
     *UPDATING SINGLE CUSTOMER
     **/
    public int updateCustomer(Customer customer, long id)
    {
        if (customer == null) {
            return 0;
        }
        SQLiteDatabase dh = this.getWritableDatabase();

        ContentValues values = new ContentValues();
        values.put(KEY_FNAME, customer.getFName());
        values.put(KEY_LNAME, customer.getLName());
        values.put(KEY_CAR_MAKE, customer.get_CarMake());
        values.put(KEY_CAR_MODEL, customer.get_CarModel());
        values.put(KEY_CAR_COST, customer.get_CarCost());

        // UPDATING ROW
        return dh.update(TABLE_CUSTOMERS, values, KEY_ID + " = ?",
                new String[] { String.valueOf(id) });
    }
    /**
     *DELETING SINGLE CUSTOMER
     **/
    public boolean deleteCustomer(long Id)
    {
        boolean rv = false;
        SQLiteDatabase dh = this.getWritableDatabase();
        rv = (dh.delete(TABLE_CUSTOMERS, KEY_ID + " = ?",
                new String[] { String.valueOf(Id) }) > 0);
        dh.close();
        return rv;
    }
}

<强>客户

  • 注意这可能与你的完全不同,尽管可能非常接近。需要注意的主要事项是 CustomerId ,否则就 CustomerRcrdActivity 而言,它会模仿您的。

: -

public class Customer {

    private long CustomerId;
    private String FName;
    private String LName;
    private String CarMake;
    private String CarModel;
    private Double CarCost;

    public Customer(String first_name, String last_name, String make_of_car, String model, Double cost) {
        this.FName = first_name;
        this.LName = last_name;
        this.CarMake = make_of_car;
        this.CarModel = model;
        this.CarCost = cost;
    }

    public Customer() {
    }

    public void setFName(String FName) {
        this.FName = FName;
    }

    public String getFName() {
        return FName;
    }

    public void setLName(String LName) {
        this.LName = LName;
    }

    public String getLName() {
        return LName;
    }

    public void set_CarMake(String carMake) {
        CarMake = carMake;
    }

    public String get_CarMake() {
        return CarMake;
    }

    public void set_CarCost(Double carCost) {
        CarCost = carCost;
    }

    public Double get_CarCost() {
        return CarCost;
    }

    public void set_CarModel(String carModel) {
        CarModel = carModel;
    }

    public String get_CarModel() {
        return CarModel;
    }

    public void setCustomerId(long customerId) {
        CustomerId = customerId;
    }

    public long getCustomerId() {
        return CustomerId;
    }

    public long getID() {
        return this.getCustomerId();
    }

    public void setID(long id) {
        this.setCustomerId(id);
    }
}

<强>布局 布局应该都是模仿你的,所以不需要包含它们(你的布局可能要好得多,因为用于此的布局很少)。

MainActivity

除了启动CustomerRcrdActivity之外别无其他,因为这是非常基本的: -

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Intent i = new Intent(this,CustomerRcrdActivity.class);
        startActivity(i);
    }
}
  • 注意使用CustomerRcrdActivity中的后退会将您带到一个空屏幕,而您无法执行任何操作。

布局是创建项目时生成的基本单一TextView: -

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 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=".MainActivity">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</android.support.constraint.ConstraintLayout>

<强>的AndroidManifest.xml

这又是非常基本的,它刚刚修改为CustomerRcrdActivity的活动部分: -

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    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=".CustomerRcrdActivity">
    </activity>
</application>

注意如果使用上述内容,包名称(第3行)可能不正确,因此需要更改。

答案 1 :(得分:0)

潜在问题1

很难看到代码中的任何内容会立即停止应用程序,除非 CustomerRcrdActivity 启动(假设它不是MAIN / first活动) ,没有任何用户互动。

在这种情况下,可能没有将活动定义为主要活动中的活动( AndroidManifest.xml )。

如果没有,那么您应该将其编码为活动,以下就足够了: -

    <activity android:name=".CustomerRcrdActivity">
    </activity>

整个清单就像是(显示给你一些关于放置代码的地方): -

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="cpa.carpurchases">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        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=".CustomerRcrdActivity">
        </activity>
    </application>
</manifest>

<强>测试

复制代码并创建基本布局和客户类,并直接从主活动调用CustomerRcrdActivity。您的代码看起来很好,并显示EditText和Button。但是,有一些问题: -

问题2 - 单击“查看”按钮

当单击视图按钮时,应用程序将崩溃,因为ListView变量 lv 尚未初始化,只是声明所以它将为null。

您会收到如下错误: -

05-29 10:09:29.382 1551-1551/cpa.carpurchases E/AndroidRuntime: FATAL EXCEPTION: main
    java.lang.IllegalStateException: Could not execute method for android:onClick
        at android.support.v7.app.AppCompatViewInflater$DeclaredOnClickListener.onClick(AppCompatViewInflater.java:389)
        at android.view.View.performClick(View.java:4084)
        at android.view.View$PerformClick.run(View.java:16966)
        at android.os.Handler.handleCallback(Handler.java:615)
        at android.os.Handler.dispatchMessage(Handler.java:92)
        at android.os.Looper.loop(Looper.java:137)
        at android.app.ActivityThread.main(ActivityThread.java:4745)
        at java.lang.reflect.Method.invokeNative(Native Method)
        at java.lang.reflect.Method.invoke(Method.java:511)
        at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:786)
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
        at dalvik.system.NativeStart.main(Native Method)
     Caused by: java.lang.reflect.InvocationTargetException
        at java.lang.reflect.Method.invokeNative(Native Method)
        at java.lang.reflect.Method.invoke(Method.java:511)
        at android.support.v7.app.AppCompatViewInflater$DeclaredOnClickListener.onClick(AppCompatViewInflater.java:384)
        at android.view.View.performClick(View.java:4084) 
        at android.view.View$PerformClick.run(View.java:16966) 
        at android.os.Handler.handleCallback(Handler.java:615) 
        at android.os.Handler.dispatchMessage(Handler.java:92) 
        at android.os.Looper.loop(Looper.java:137) 
        at android.app.ActivityThread.main(ActivityThread.java:4745) 
        at java.lang.reflect.Method.invokeNative(Native Method) 
        at java.lang.reflect.Method.invoke(Method.java:511) 
        at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:786) 
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553) 
        at dalvik.system.NativeStart.main(Native Method) 
     Caused by: java.lang.NullPointerException
        at cpa.carpurchases.CustomerRcrdActivity.ShowRecords(CustomerRcrdActivity.java:123)
        at cpa.carpurchases.CustomerRcrdActivity.buttonClicked(CustomerRcrdActivity.java:81)
        at java.lang.reflect.Method.invokeNative(Native Method) 
        at java.lang.reflect.Method.invoke(Method.java:511) 
        at android.support.v7.app.AppCompatViewInflater$DeclaredOnClickListener.onClick(AppCompatViewInflater.java:384) 
        at android.view.View.performClick(View.java:4084) 
        at android.view.View$PerformClick.run(View.java:16966) 
        at android.os.Handler.handleCallback(Handler.java:615) 
        at android.os.Handler.dispatchMessage(Handler.java:92) 
        at android.os.Looper.loop(Looper.java:137) 
        at android.app.ActivityThread.main(ActivityThread.java:4745) 
        at java.lang.reflect.Method.invokeNative(Native Method) 
        at java.lang.reflect.Method.invoke(Method.java:511) 
        at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:786) 
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553) 
        at dalvik.system.NativeStart.main(Native Method) 

对此的修复很简单,您需要一行,在onCreate方法中,类似于: -

    lv = (ListView) findViewById(R.id.lv); // For testing I gave the ListView an id of **lv**.

单击“查看”按钮然后工作正常(此时为时尚,注意到目前在测试期间没有添加任何内容)。

问题3 - 单击任何其他按钮

单击任何其他按钮结果(如果未输入任何内容)会在调用getValues方法时导致 NumberFormatException 异常,因为CarCost字段中没有任何内容。为了避免这种情况,我简单地补充说: -

    String car_Cost = CarCost.getText().toString(); //<<<<EXISTING CODE
    if (car_Cost.length() < 1) {
        car_Cost = "0.00";
    }
    d_Car_Cost = Double.parseDouble(car_Cost); //<<<< EXISTING CODE

介绍此修复导致: -

  • DELETE按钮工作并报告记录已被删除(即使不存在),
  • UPDATE按钮导致空指针异常(注意此阶段尚未输入任何数据)
  • ADD按钮失败,因为Databasehandler类的清单中没有条目。但是,它无法添加,因为它不是一项活动。但好处是它实际上是在表中添加行(即使没有添加数据)。

修复DELETE按钮

deleteCustomer方法已更改为返回一个布尔值,表示该行是否已被删除: -

public boolean deleteCustomer(int Id)
{
    boolean rv = false;
    SQLiteDatabase dh = this.getWritableDatabase();
    rv = (dh.delete(TABLE_CUSTOMERS, KEY_ID + " = ?",
            new String[] { String.valueOf(Id) }) > 0);
    dh.close();
    return rv;
}

此外,如果没有删除任何内容,deleteCustomer更改为Toast一个不同的消息: -

private void deleteCustomer()
{
    getValues();
     if (dh.deleteCustomer(Id)) {
         Toast.makeText(getApplicationContext(), "Customer Deleted Successfully", Toast.LENGTH_LONG).show();
     } else {
         Toast.makeText(getApplicationContext(), "Customer Not Deleted", Toast.LENGTH_LONG).show();
     }
}

修复ADD按钮

尝试将DatabaseHandler作为Activity启动的行按以下方式注释掉: -

        case R.id.button_CR_add:
            // CALL addCustomer() TO ADD TO DATABASE
            addCustomer();

            // START NEW ACTIVITY WHEN ADD BUTTON CLICKED
            //Intent intent = new Intent(this, DatabaseHandler.class);
            //startActivity(intent);

            break;

此外,如果没有输入任何内容,则不会添加行我将addCustomer方法更改为: -

// INSERT DATA INTO DATABASE
private void addCustomer()
{
    boolean ok_to_add = true;
    getValues();
    if (F_Name == null || F_Name.length() < 1) ok_to_add = false;
    if (L_Name == null || L_Name.length() < 1) ok_to_add = false;
    if (Car_Make == null || Car_Make.length() < 1) ok_to_add = false;
    if (Car_Model == null || Car_Model.length() < 1) ok_to_add = false;
    if (ok_to_add) {
        dh.addCustomers(new Customer(F_Name, L_Name, Car_Make, Car_Model, d_Car_Cost));
        Toast.makeText(getApplicationContext(), "Customer Added Successfully", Toast.LENGTH_LONG).show();
    } else {
        Toast.makeText(getApplicationContext(), "Unable To Add - Some Data hasn't been given", Toast.LENGTH_LONG).show();
    }
}

现在可以添加数据。

“查看”按钮还会列出数据。

更新按钮

错误是由于未设置变量 dataModel ,除非单击列表中的条目。

为了避免这种情况,使用了以下代码更改: -

updateCustomer方法已更改为返回整数(更新行数): -

/**
 *UPDATING SINGLE CUSTOMER
 **/
public int updateCustomer(Customer customer, int id)
{
    if (customer == null) {
        return 0;
    }
    SQLiteDatabase dh = this.getWritableDatabase();

    ContentValues values = new ContentValues();
    values.put(KEY_FNAME, customer.getFName());
    values.put(KEY_LNAME, customer.getLName());
    values.put(KEY_CAR_MAKE, customer.get_CarMake());
    values.put(KEY_CAR_MODEL, customer.get_CarModel());
    values.put(KEY_CAR_COST, customer.get_CarCost());

    // UPDATING ROW
    return dh.update(TABLE_CUSTOMERS, values, KEY_ID + " = ?",
            new String[] { String.valueOf(id) });
}

如果没有进行更新(总是在目前),则CustomerRcrdActivity的updateCustomer方法更改为Toast一条不同的消息: -

private void updateCustomer()
{
    getValues();
     if (dh.updateCustomer(dataModel, Id)>0) {
         Toast.makeText(getApplicationContext(), "Customer Updated Successfully", Toast.LENGTH_LONG).show();
     } else {
         Toast.makeText(getApplicationContext(), "Customer Not Updated", Toast.LENGTH_LONG).show();
     }