Android Studio中实战演练——绿豆通讯录

绿豆通讯录

  1. 创建程序
    创建一个名为Directory的应用程序,指定包名为cn.itcast.directory,设计用户交互界面:
    注:包名要为这个名称,不然后面运行时可能会有报错。
<?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:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/bg" 
    tools:context="cn.itcast.directory.MainActivity">

    <LinearLayout
        android:id="@+id/ll_name"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_above="@+id/ll_phone"
        android:layout_alignLeft="@+id/ll_btn"
        android:layout_alignStart="@+id/ll_btn">
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="18sp"
            android:text="姓 名:"/>
        <EditText
            android:id="@+id/et_name"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textSize="16sp"
            android:hint="请输入姓名"/>
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@id/ll_phone"
        android:layout_marginBottom="10dp"
        android:layout_above="@+id/ll_btn"
        android:layout_alignLeft="@+id/ll_name"
        android:layout_alignStart="@+id/ll_name">
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="18sp"
            android:text="电 话:"/>
        <EditText
            android:id="@+id/et_phone"
            android:layout_width="289dp"
            android:layout_height="wrap_content"
            android:textSize="16sp"
            android:hint="请输入手机号码"/>

    </LinearLayout>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@id/ll_btn"
        android:layout_centerVertical="true">
        <Button
            android:id="@+id/btn_add"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:textSize="18sp"
            android:background="#B9B9FF"
            android:layout_marginRight="2dp"
            android:text="添加"/>
        <Button
            android:id="@+id/btn_query"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:textSize="18sp"
            android:background="#DCB5FF"
            android:layout_marginRight="2dp"
            android:text="查询"/>
        <Button
            android:id="@+id/btn_update"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:textSize="18sp"
            android:background="#E6CAFF"
            android:layout_marginRight="2dp"
            android:text="修改"/>
        <Button
            android:id="@+id/btn_delete"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:textSize="18sp"
            android:background="#E6CAFF"
            android:layout_marginRight="2dp"
            android:text="删除"/>
    </LinearLayout>
    <TextView
        android:id="@+id/iv_tv_show"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="25dp"
        android:layout_below="@+id/ll_btn"
        android:textSize="20sp"/>
</RelativeLayout>

背景图片( android:background="@drawable/bg" ) 可以自己去网上找,随便整一张就好了,看自己的美观
  1. 编写界面交互代码
    在MainActivity.java 编写用于实现联系人信息的添加、查询、修改和删除,将按钮之后 进行信息的展示。
package cn.itcast.directory;

import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;

public class MainActivity extends AppCompatActivity implements View.OnClickListener{
    MyHelper myHelper;
    private EditText mEtName;
    private EditText mEtPhone;
    private TextView mTvShow;
    private Button mBtnAdd;
    private Button mBtnQuery;
    private Button mBtnUpdate;
    private Button mBtnDelete;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        myHelper =new MyHelper(this);
        init();//初始化控件
    }

    private void init() {
        mEtName=(EditText) findViewById(R.id.et_name);
        mEtPhone=(EditText) findViewById(R.id.et_phone);
        mTvShow=(TextView) findViewById(R.id.iv_tv_show);
        mBtnAdd=(Button) findViewById(R.id.btn_add);
        mBtnQuery=(Button) findViewById(R.id.btn_query);
        mBtnUpdate=(Button) findViewById(R.id.btn_update);
        mBtnDelete=(Button) findViewById(R.id.btn_delete);
        mBtnAdd.setOnClickListener(this);
        mBtnQuery.setOnClickListener(this);
        mBtnUpdate.setOnClickListener(this);
        mBtnDelete.setOnClickListener(this);
    }

    public void onClick(View v){
        String name;
        String phone;
        SQLiteDatabase db;
        ContentValues values;
        switch (v.getId()){
            case R.id.btn_add: //添加数据
                name=mEtName.getText().toString();
                phone=mEtPhone.getText().toString();
                db=myHelper.getWritableDatabase();//获取可读写SQLiteDatebases 对象
                values=new ContentValues(); //创建COntentValues 对象
                values.put("name",name); //将数据添加到COntentValues 对象
                values.put("phone",phone);
                db.insert("information",null,values);
                Toast.makeText(this,"信息已添加",Toast.LENGTH_SHORT).show();
                db.close();
                break;

            case R.id.btn_query: //查询数据
                db=myHelper.getReadableDatabase();
                Cursor cursor=db.query("information",null,null,null,null,null,null);
                if (cursor.getCount() == 0){
                    mTvShow.setText("");
                    Toast.makeText(this,"没有数据",Toast.LENGTH_SHORT).show();
                }else {
                    cursor.moveToFirst();
                    mTvShow.setText("Name:"+cursor.getString(1)+"; Tel:"+cursor.getString(2));
                }
                while (cursor.moveToNext()){
                    mTvShow.append("\n"+"Name:"+cursor.getString(1)+"; Tel:"+cursor.getString(2));
                }
                cursor.close();
                db.close();
                break;
            case R.id.btn_update: //修改数据
                db=myHelper.getWritableDatabase();
                values=new ContentValues(); //要修改的数据
                values.put("phone",phone=mEtPhone.getText().toString());
                db.update("information",values,"name=?",new String[]{mEtName.getText().toString()}); //更新并得到行数
                Toast.makeText(this,"信息已修改",Toast.LENGTH_SHORT).show();
                db.close();
                break;
            case R.id.btn_delete: //删除数据
                db=myHelper.getWritableDatabase();//获取可读写SQLiteDatebases 对象
                values=new ContentValues(); //创建COntentValues 对象
                db.delete("information",null,null);
                Toast.makeText(this,"信息已删除",Toast.LENGTH_SHORT).show();
                mTvShow.setText("");
                db.close();
                break;
        }

    }
    //创建SQLite的数据库MyHelper
    class MyHelper extends SQLiteOpenHelper{
        public MyHelper(Context context){
            super(context,"itcast.db",null,1);
        }
        public void onCreate(SQLiteDatabase db){
            db.execSQL("CREATE TABLE information(_id INTEGER PRIMARY KEY AUTOINCREMENT,name VARCHAR(20),phone VARCHAR(20))");
        }
        public void onUpgrade(SQLiteDatabase db,int oldVersion,int newVersion){

        }
    }
}

  1. 运行程序
    添加:
    添加

查询:
查询

修改:(修改之后再次进行点击查询 查看)
修改

删除:存入的那些联系人全部被删除
删除

  • 16
    点赞
  • 135
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 11
    评论
评论 11
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Big-Winda

感谢支持

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值