我的编程空间,编程开发者的网络收藏夹

android 加载本地联系人实现方法

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

android 加载本地联系人实现方法

首先先建布局文件,界面很简单,就是一个搜索框和下面的联系人列表:
 
代码如下:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FFD3D7DF"
android:orientation="vertical"
android:padding="0dip" >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="3dip"
android:layout_marginRight="3dip"
android:layout_marginTop="3dip" >
<EditText
android:id="@+id/search_view"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/hint_search_contacts"
android:paddingLeft="32dip"
android:singleLine="true"
android:textSize="16sp" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@id/search_view"
android:layout_centerVertical="true"
android:layout_marginLeft="3dip"
android:class="lazy" data-src="@drawable/contacts" />
</RelativeLayout>
<ListView
android:id="@+id/contact_list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="0dip"
android:layout_marginLeft="0dip"
android:layout_marginRight="0dip"
android:layout_marginTop="0dip"
android:layout_weight="1.0"
android:cacheColorHint="#00000000"
android:divider="#00000000"
android:dividerHeight="0.1px"
android:fadingEdge="none"
android:footerDividersEnabled="false"
android:listSelector="@null"
android:paddingBottom="0dip"
android:paddingLeft="0dip"
android:paddingRight="0dip"
android:paddingTop="0dip" />
</LinearLayout>

代码如下:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:paddingTop="2dip"
android:paddingBottom="2dip"
android:background="@color/list_item_background">
<ImageView
android:id="@+id/photo"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_marginLeft="5dip"
android:layout_gravity="center_vertical"
android:layout_weight="1"
android:class="lazy" data-src="@drawable/default_avatar"
/>
<LinearLayout
android:orientation="vertical"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_gravity="center_vertical"
android:layout_marginLeft="5dip"
android:layout_weight="100">
<TextView android:id="@+id/text1"
android:typeface="serif"
android:singleLine="true"
style="@style/list_font_main_text" />
<LinearLayout
android:orientation="horizontal"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_marginTop="3dip">
<TextView android:id="@+id/text2"
android:typeface="serif"
android:singleLine="true"
style="@style/list_font_detail_text" />
<TextView android:id="@+id/text3"
android:ellipsize="marquee"
android:layout_marginLeft="3dip"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
style="@style/list_font_detail_text" />
</LinearLayout>
</LinearLayout>
</LinearLayout>

然后是点击事件:(点击后要把选择的联系人号码返回到输入框里)
 
代码如下:
// 获取联系人按钮对象并 绑定onClick单击事件
phoneButton = (Button) findViewById(R.id.find_phone);
phoneButton.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
// 从联系人选择号码,再通过onActivityResult()方法处理回调结果
Intent intent = new Intent(context, ContactsActivity.class);
startActivityForResult(intent, REQUEST_CODE);
}
});

@Override
public void onActivityResult(int reqCode, int resultCode, Intent data) {
super.onActivityResult(reqCode, resultCode, data);
if (resultCode == RESULT_OK) {
switch (reqCode) {
case REQUEST_CODE:
String phone = data.getStringExtra("phone");
phoneEditText.setText(phone);
break;
}
}
}

 
下面就是联系人界面的activity了:
代码如下:

public class ContactsActivity extends Activity {
private Context ctx = ContactsActivity.this;
private TextView topTitleTextView;
private ListView listView = null;
List<HashMap<String, String>> contactsList = null;
private EditText contactsSearchView;
private ProgressDialog progressDialog = null;
// 数据加载完成的消息
private final int MESSAGE_SUCC_LOAD = 0;
// 数据查询完成的消息
private final int MESSAGE_SUCC_QUERY = 1;
private Handler handler = new Handler() {
@Override
public void handleMessage(Message msg) {
super.handleMessage(msg);
switch (msg.what) {
case MESSAGE_SUCC_LOAD:
listView.setAdapter(new ContactsAdapter(ctx));
progressDialog.dismiss();
break;
case MESSAGE_SUCC_QUERY:
listView.setAdapter(new ContactsAdapter(ctx));
break;
}
}
};
protected void onCreate(Bundle savedInstanceState) {
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
super.onCreate(savedInstanceState);
this.setContentView(R.layout.contacts);
// 使用listView显示联系人
listView = (ListView) findViewById(R.id.contact_list);
loadAndSaveContacts();
// 绑定listView item的单击事件
listView.setOnItemClickListener(new OnItemClickListener() {
@SuppressWarnings("unchecked")
public void onItemClick(AdapterView<?> adapterView, View view, int position, long _id) {
HashMap<String, String> map = (HashMap<String, String>) adapterView.getItemAtPosition(position);
String phone = map.get("phone");
// 对手机号码进行预处理(去掉号码前的+86、首尾空格、“-”号等)
phone = phone.replaceAll("^(\\+86)", "");
phone = phone.replaceAll("^(86)", "");
phone = phone.replaceAll("-", "");
phone = phone.trim();
// 如果当前号码并不是手机号码
if (!SaleUtil.isValidPhoneNumber(phone))
SaleUtil.createDialog(ctx, R.string.dialog_title_tip, getString(R.string.alert_contacts_error_phone));
else {
Intent intent = new Intent();
intent.putExtra("phone", phone);
setResult(RESULT_OK, intent);
// 关闭当前窗口
finish();
}
}
});
contactsSearchView = (EditText) findViewById(R.id.search_view);
contactsSearchView.addTextChangedListener(new TextWatcher() {
public void afterTextChanged(Editable s) {
}
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
public void onTextChanged(CharSequence s, int start, int before, int count) {
queryContacts(s.toString());
}
});
}

private void loadAndSaveContacts() {
progressDialog = ProgressDialog.show(ctx, null, "正在加载联系人数据...");
new Thread() {
@Override
public void run() { // 获取联系人数据
contactsList = findContacts();
// 临时存储联系人数据
DBHelper.saveContacts(ctx, contactsList);
// 发送消息通知更新UI
handler.sendEmptyMessage(MESSAGE_SUCC_LOAD);
}
}.start();
}

private void queryContacts(final String keyWord) {
new Thread() {
@Override
public void run() {
// 获取联系人数据
contactsList = DBHelper.findContactsByCond(ctx, keyWord);
// 发送消息通知更新UI
handler.sendEmptyMessage(MESSAGE_SUCC_QUERY);
}
}.start();
}

public List<HashMap<String, String>> findContacts() {
List<HashMap<String, String>> list = new ArrayList<HashMap<String, String>>();
// 查询联系人
Cursor contactsCursor = ctx.getContentResolver().query(ContactsContract.Contacts.CONTENT_URI, null, null, null, PhoneLookup.DISPLAY_NAME + " COLLATE LOCALIZED ASC");
// 姓名的索引
int nameIndex = 0;
// 联系人姓名
String name = null;
// 联系人头像ID
String photoId = null;
// 联系人的ID索引值
String contactsId = null;
// 查询联系人的电话号码
Cursor phoneCursor = null;
while (contactsCursor.moveToNext()) {
nameIndex = contactsCursor.getColumnIndex(PhoneLookup.DISPLAY_NAME);
name = contactsCursor.getString(nameIndex);
photoId = contactsCursor.getString(contactsCursor.getColumnIndex(PhoneLookup.PHOTO_ID));
contactsId = contactsCursor.getString(contactsCursor.getColumnIndex(ContactsContract.Contacts._ID));
phoneCursor = getContentResolver().query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI, null, ContactsContract.CommonDataKinds.Phone.CONTACT_ID + " = " + contactsId, null, null);
// 遍历联系人号码(一个人对应于多个电话号码)
while (phoneCursor.moveToNext()) {
HashMap<String, String> phoneMap = new HashMap<String, String>();
// 添加联系人姓名
phoneMap.put("name", name);
// 添加联系人头像
phoneMap.put("photo", photoId);
// 添加电话号码
phoneMap.put("phone", phoneCursor.getString(phoneCursor.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER)));
// 添加号码类型(住宅电话、手机号码、单位电话等)
phoneMap.put("type", getString(ContactsContract.CommonDataKinds.Phone.getTypeLabelResource(phoneCursor.getInt(phoneCursor.getColumnIndex(ContactsContract.CommonDataKinds.Phone.TYPE)))));
list.add(phoneMap);
}
phoneCursor.close();
}
contactsCursor.close();
return list;
}

public static Bitmap getPhoto(Context context, String photoId) {
Bitmap bitmap = BitmapFactory.decodeResource(context.getResources(), R.drawable.default_avatar);
if (photoId != null && "".equals(photoId)) {
String[] projection = new String[] { ContactsContract.Data.DATA15 };
String selection = "ContactsContract.Data._ID = " + photoId;
Cursor cur = context.getContentResolver().query(ContactsContract.Data.CONTENT_URI, projection, selection, null, null);
if (cur != null) {
cur.moveToFirst();
byte[] contactIcon = null;
contactIcon = cur.getBlob(cur.getColumnIndex(ContactsContract.Data.DATA15));
if (contactIcon != null) {
bitmap = BitmapFactory.decodeByteArray(contactIcon, 0, contactIcon.length);
}
}
}
return bitmap;
}

class ContactsAdapter extends BaseAdapter {
private LayoutInflater inflater = null;
public ContactsAdapter(Context ctx) {
inflater = LayoutInflater.from(ctx);
}
public int getCount() {
return contactsList.size();
}
public Object getItem(int p osition) {
return contactsList.get(position);
}
public long getItemId(int position) {
return position;
}
public View getView(int position, View convertView, ViewGroup parent) {
ViewHolder holder = null;
if (convertView == null) {
holder = new ViewHolder();
convertView = inflater.inflate(R.layout.contacts_listview_item, null);
holder.text1 = (TextView) convertView.findViewById(R.id.text1);
holder.text2 = (TextView) convertView.findViewById(R.id.text2);
holder.text3 = (TextView) convertView.findViewById(R.id.text3);
convertView.setTag(holder);
} else {
holder = (ViewHolder) convertView.getTag();
}
holder.text1.setText(contactsList.get(position).get("name"));
holder.text2.setText(contactsList.get(position).get("type"));
holder.text3.setText(contactsList.get(position).get("phone"));
return convertView;
}
public final class ViewHolder {
private TextView text1;
private TextView text2;
private TextView text3;
}
}
}

查询方法语句:
代码如下:

public static List<HashMap<String, String>> findContactsByCond(Context context, String keyWord) {
List<HashMap<String, String>> list = new ArrayList<HashMap<String, String>>();
SQLiteDatabase db = DBHelper.getSQLiteDb(context);
String sql = "select * from contacts where name like '" + keyWord + "%' or name_alias like '" + keyWord + "%' order by _id";
// 查询数据
Cursor cursor = db.rawQuery(sql, null);
while (cursor.moveToNext()) {
HashMap<String, String> map = new HashMap<String, String>();
map.put("name", cursor.getString(cursor.getColumnIndex("name")));
map.put("phone", cursor.getString(cursor.getColumnIndex("phone")));
map.put("type", cursor.getString(cursor.getColumnIndex("type")));
map.put("photo", cursor.getString(cursor.getColumnIndex("photo")));
list.add(map);
}
cursor.close();
db.close();
return list;
}

public static void saveContacts(Context context, List<HashMap<String, String>> contactsList) {
SQLiteDatabase db = DBHelper.getSQLiteDb(context);
// 开启事务控制
db.beginTransaction();
try {
// 先将联系人数据清空
db.execSQL("drop table if exists contacts");
db.execSQL("create table contacts(_id integer not null primary key autoincrement, name varchar(50), name_alias varchar(10), phone varchar(30), type varchar(50), photo varchar(50))");
String sql = null;
for (HashMap<String, String> contactsMap : contactsList) {
sql = String.format("insert into contacts(name,name_alias,phone,type,photo) values('%s','%s','%s','%s','%s')", contactsMap.get("name"), SaleUtil.getPinYinFirstAlphabet(contactsMap.get("name")), contactsMap.get("phone"), contactsMap.get("type"), contactsMap.get("photo"));
db.execSQL(sql);
}
// 设置事务标志为成功
db.setTransactionSuccessful();
} finally {
// 结束事务
db.endTransaction();
db.close();
}
}

工具类:
代码如下:

public static boolean isValidPhoneNumber(String userPhone) {
if (null == userPhone || "".equals(userPhone))
return false;
Pattern p = Pattern.compile("^0?1[0-9]{10}");
Matcher m = p.matcher(userPhone);
return m.matches();
}

public static String getPinYinFirstAlphabet(String chinese) {
String convert = "";
for (int j = 0; j < chinese.length(); j++ ) {
char word = chinese.charAt(j);
String[] pinyinArray = PinyinHelper.toHanyuPinyinStringArray(word);
if (pinyinArray != null) {
convert += pinyinArray[0].charAt(0);
} else {
convert += word;
}
}
return convert;
}

最后加上权限就行了;
代码如下:
<!-- 访问联系人的权限 -->
<uses-permission android:name="android.permission.READ_CONTACTS" />
您可能感兴趣的文章:Android编程实现通讯录中联系人的读取,查询,添加功能示例Android手机联系人快速索引(手机通讯录)Android获取手机通讯录、sim卡联系人及调用拨号界面方法使用adb命令向Android模拟器中导入通讯录联系人的方法Android之联系人PinnedHeaderListView使用介绍Android系统联系人全特效实现(上)分组导航和挤压动画(附源码)Android根据电话号码获得联系人头像实例代码Android仿微信联系人按字母排序Android保存联系人到通讯录的方法


免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

android 加载本地联系人实现方法

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

android 加载本地联系人实现方法

首先先建布局文件,界面很简单,就是一个搜索框和下面的联系人列表: 代码如下: 2022-06-06

android异步加载图片并缓存到本地实现方法

在android项目中访问网络图片是非常普遍性的事情,如果我们每次请求都要访问网络来获取图片,会非常耗费流量,而且图片占用内存空间也比较大,图片过多且不释放的话很容易造成内存溢出。针对上面遇到的两个问题,首先耗费流量我们可以将图片第一次加载
2022-06-06

Android实现新增及编辑联系人的方法

本文实例介绍了Android开发中对联系人修改、新增联系人的方法,通过本实例代码可实现添加联系人、编辑修改联系人,新增联系人和更新联系人等操作,操作主要放在线程中处理,并且在操作的过程中,显示圆形进度条,在Android系统中,这是种比较常
2022-06-06

android中H5本地缓存加载优化的方法

这篇文章主要介绍了android中H5本地缓存加载优化的方法,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。动手: 1.用 filedownloader 去下载了Html压缩文
2023-06-14

Android实现图片异步加载及本地缓存

在android项目中访问网络图片是非常普遍性的事情,如果我们每次请求都要访问网络来获取图片,会非常耗费流量,而且图片占用内存空间也比较大,图片过多且不释放的话很容易造成内存溢出。针对上面遇到的两个问题,首先耗费流量我们可以将图片第一次加载
2022-06-06

Android开发实现删除联系人通话记录的方法

本文实例讲述了Android开发实现删除联系人通话记录的方法。分享给大家供大家参考,具体如下: 1. 负责存放呼叫记录的内容提供者源码在 ContactsProvider 项目下: 源码路径: com/Android/providers/c
2022-06-06

Android实现图片异步加载并缓存到本地

在android应用开发的时候,加载网络图片是一个非常重要的部分,很多图片不可能放在本地,所以就必须要从服务器或者网络读取图片。 软引用是一个现在非常流行的方法,用户体验比较好,不用每次都需要从网络下载图片,如果下载后就存到本地,下次读取时
2022-06-06

Android 实现加载大图片的方法

项目简介: 该项目为加载大图片 详细介绍: 对于超大的图片,如果不缩放的话,容易导致内存溢出。而经过处理后,无论多大的图片,都能够在手机屏幕上加载出来,不会导致内存溢出。当然,脸黑的除外 该应用涉及到的知识有: - 1.Bitmap的使用
2022-06-06

android中Glide实现加载图片保存至本地并加载回调监听

Glide 加载图片使用到的两个记录Glide 加载图片保存至本地指定路径 Glid
2023-05-30

Android编程操作联系人的方法(查询,获取,添加等)

本文实例讲述了Android编程操作联系人的方法。分享给大家供大家参考,具体如下: Android系统中的联系人也是通过ContentProvider来对外提供数据的,我们这里实现获取所有联系人、通过电话号码获取联系人、添加联系人、使用事务
2022-06-06

Android ListView实现ImageLoader图片加载的方法

本文实例讲述了Android ListView实现ImageLoader图片加载的方法。分享给大家供大家参考,具体如下:最近一直忙着做项目,今天也是忙里偷闲,想写篇博客来巩固下之前在应用中所用的知识。之前我们可能会也会肯定遇到了图片的异步加
2023-05-30

Android实现滑动加载数据的方法

本文实例讲述了Android实现滑动加载数据的方法。分享给大家供大家参考。具体实现方法如下: EndLessActivity.java如下:package com.ScrollListView; import Android.app.Lis
2022-06-06

android实现ViewPager懒加载的三种方法

在项目中ViewPager和Fragment接口框架已经是处处可见,但是在使用中,我们肯定不希望用户在当前页面时就在前后页面的数据,加入数据量很大,而用户又不愿意左右滑动浏览,那么这时候ViewPager中本来充满善意的预加载就有点令人不爽
2022-06-06

Android实现加载时提示“正在加载,请稍后”的方法

前言 这篇文章主要介绍的是,如何实现点击按钮,弹出“正在加载数据,请稍候…”对话框,加载完了之后,对话框自动消失呢? 其实也是很简单的看下面代码:import com.farsunset.ichat.example.R; import an
2022-06-06

Android实现ListView异步加载图片的方法

本文实例讲述了Android实现ListView异步加载图片的方法。分享给大家供大家参考。具体如下: ListView异步加载图片是非常实用的方法,凡是是要通过网络获取图片资源一般使用这种方法比较好,用户体验好,不用让用户等待下去,下面就说
2022-06-06

Android实现ListView数据动态加载的方法

本文实例讲述了Android实现ListView数据动态加载的方法。分享给大家供大家参考,具体如下:list.setOnScrollListener(new OnScrollListener() { //添加滚动条滚到最底部,加载余下的元素
2022-06-06

Android编程实现加载等待ProgressDialog的方法

本文实例讲述了Android编程实现加载等待ProgressDialog的方法。分享给大家供大家参考,具体如下: 显示progressDialog的类:import android.app.ProgressDialog; import an
2022-06-06

Android开发如何实现webview中img标签加载本地图片

这篇文章主要介绍Android开发如何实现webview中img标签加载本地图片,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!具体如下:在网上查了很多教程,感觉很麻烦,各种方法,最后实践很简单,主要是两步:WebSe
2023-05-30

Android实现ListView异步加载的方法(改进版)

本文实例讲述了Android实现ListView异步加载的方法。分享给大家供大家参考,具体如下:@Overridepublic View getView(int position, View convertView, ViewGroup p
2022-06-06

编程热搜

  • Android:VolumeShaper
    VolumeShaper(支持版本改一下,minsdkversion:26,android8.0(api26)进一步学习对声音的编辑,可以让音频的声音有变化的播放 VolumeShaper.Configuration的三个参数 durati
    Android:VolumeShaper
  • Android崩溃异常捕获方法
    开发中最让人头疼的是应用突然爆炸,然后跳回到桌面。而且我们常常不知道这种状况会何时出现,在应用调试阶段还好,还可以通过调试工具的日志查看错误出现在哪里。但平时使用的时候给你闹崩溃,那你就欲哭无泪了。 那么今天主要讲一下如何去捕捉系统出现的U
    Android崩溃异常捕获方法
  • android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
    系统的设置–>电池–>使用情况中,统计的能耗的使用情况也是以power_profile.xml的value作为基础参数的1、我的手机中power_profile.xml的内容: HTC t328w代码如下:
    android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
  • Android SQLite数据库基本操作方法
    程序的最主要的功能在于对数据进行操作,通过对数据进行操作来实现某个功能。而数据库就是很重要的一个方面的,Android中内置了小巧轻便,功能却很强的一个数据库–SQLite数据库。那么就来看一下在Android程序中怎么去操作SQLite数
    Android SQLite数据库基本操作方法
  • ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
    工作的时候为了方便直接打开编辑文件,一些常用的软件或者文件我们会放在桌面,但是在ubuntu20.04下直接直接拖拽文件到桌面根本没有效果,在进入桌面后发现软件列表中的软件只能收藏到面板,无法复制到桌面使用,不知道为什么会这样,似乎并不是很
    ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
  • android获取当前手机号示例程序
    代码如下: public String getLocalNumber() { TelephonyManager tManager =
    android获取当前手机号示例程序
  • Android音视频开发(三)TextureView
    简介 TextureView与SurfaceView类似,可用于显示视频或OpenGL场景。 与SurfaceView的区别 SurfaceView不能使用变换和缩放等操作,不能叠加(Overlay)两个SurfaceView。 Textu
    Android音视频开发(三)TextureView
  • android获取屏幕高度和宽度的实现方法
    本文实例讲述了android获取屏幕高度和宽度的实现方法。分享给大家供大家参考。具体分析如下: 我们需要获取Android手机或Pad的屏幕的物理尺寸,以便于界面的设计或是其他功能的实现。下面就介绍讲一讲如何获取屏幕的物理尺寸 下面的代码即
    android获取屏幕高度和宽度的实现方法
  • Android自定义popupwindow实例代码
    先来看看效果图:一、布局
  • Android第一次实验
    一、实验原理 1.1实验目标 编程实现用户名与密码的存储与调用。 1.2实验要求 设计用户登录界面、登录成功界面、用户注册界面,用户注册时,将其用户名、密码保存到SharedPreference中,登录时输入用户名、密码,读取SharedP
    Android第一次实验

目录