`
弄月吟风
  • 浏览: 199007 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

Android短信批量删除效果

阅读更多

前段时间在做一个项目的后期维护时,对方提出了把短信做成可以批量删除、、然后冥思苦想,终于想到了一个可执行方案、、那边的要求时这样的、、进入短信的草稿箱,然后点击一条短信,弹出批量删除对话框,然后有一个全选框,可以进行多项选择,进行删除、、、、

 

实现过程如下:首先建立一个主布局文件,主要有两个listview,然后是4个按钮,我们要做的是把四个按钮中的3个设为不可见,一个设为可见,listview也是只有一个可见,其他三个设为不可见

主xml文件:sms_store.xml

 

<?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:orientation="vertical" >

    <include layout="@layout/head" />
    <!-- 动态显示界面 -->

    <LinearLayout
        android:id="@+id/body"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_weight="0.95"
        android:orientation="vertical"
         android:background="#F5F8FD"
        >

        

            <ListView
                android:id="@+id/smslist"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content" 
                android:visibility="visible"/>
            <!-- 批量删除下的列表 -->
             <ListView
                android:id="@+id/smslist2"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content" 
                android:visibility="gone"/>
       
    </LinearLayout>

    <include layout="@layout/sms_foot" />

</LinearLayout>

 sms_foot.xml文件

 

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/bottomlist"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/tab_botton"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" 
        >

        <Button
            android:id="@+id/btn_choceall"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@drawable/bt_background"
            android:gravity="center"
            android:text="全标记"
            android:textColor="#ffffffff"
            android:visibility="gone" 
            android:width="50dp"
            android:layout_weight="1"/>

        <Button
            android:id="@+id/btn_delete"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@drawable/bt_background"
            android:gravity="center"
            android:text="删除"
            android:layout_weight="1"
            android:textColor="#ffffffff"
            android:visibility="gone" 
            android:width="50dp"/>

        <Button
            android:id="@+id/backbefore"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@drawable/bt_background"
            android:gravity="center"
            android:text="返回"
            android:layout_weight="1"
            android:textColor="#ffffffff"
            android:visibility="gone" 
            android:width="50dp"/>
    </LinearLayout>

    <Button
        android:id="@+id/smsback"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/bt_background"
        android:gravity="center"
        android:layout_gravity="right"
        android:text="返回"
        android:textColor="#ffffffff"
        android:visibility="visible" 
        android:width="50dp"/>
</LinearLayout>

 接下载建立两个listview的主体,一个是普通的文本,一个是多选框的文本

smslist.xml

 

<?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:orientation="vertical" >

    <TextView
        android:id="@+id/title"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:textSize="25dip"
        android:ellipsize="end"
        android:singleLine="true"
        android:textColor="@color/black"
        android:text="TextView" />

</LinearLayout>

 sms_delete.xml

 

<?xml version="1.0" encoding="utf-8"?>
<CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/content"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:checkMark="?android:attr/listChoiceIndicatorMultiple"
    android:ellipsize="end"
    android:singleLine="true"
    android:textColor="@color/black"
    android:textSize="20dip" >

</CheckedTextView>

 在Activity里面建立

Button smsback, smsbackbrfore,btChoseall, btDelete;

ListView listv, listv2;

并且setContentView(R.layout.sms_store);

然后findid一下

 

smsback = (Button) findViewById(R.id.smsback);

smsbackbrfore = (Button) findViewById(R.id.backbefore);

btChoseall = (Button) findViewById(R.id.btn_choceall);// 全选按钮

btDelete = (Button) findViewById(R.id.btn_delete);// 删除按钮

listv = (ListView) findViewById(R.id.smslist);

listv2 = (ListView) findViewById(R.id.smslist2);

然后创建一个方法更新视图

 

private void updataview() {

listv.setVisibility(View.VISIBLE);

smsback.setVisibility(View.VISIBLE);

listv2.setVisibility(View.GONE);

smsbackbrfore.setVisibility(View.GONE);

btChoseall.setVisibility(View.GONE);

btDelete.setVisibility(View.GONE);

list = getData(status);

if (list == null) {

// 表示没有数据,显示数据为空

} else {

// 表示有数据

listViewAdapter = new ListViewAdapter(MsgStoreActivity.this, list,

R.layout.smslist, new String[] { "content" },

new int[] { R.id.title });

listv.setAdapter(listViewAdapter);

}

}

得到数据库的返回数据

 

private List<Map<String, String>> getData(String status) {

Cursor cursor = new DatabaseHelper().fetchData(MsgStoreActivity.this,

DataDefine.TABLE_MSG, Integer.valueOf(status));

List<Map<String, String>> list = new ArrayList<Map<String, String>>();

int i = 1;

System.out.println(cursor.getCount());

if (cursor != null && cursor.getCount() > 0) {

// 有数据

do {

Map<String, String> map = new HashMap<String, String>();

map.put("id", cursor.getString(cursor

.getColumnIndex(DataDefine.KEY_MSG_ID_AUTO_INCREMENT)));

String s = cursor.getString(cursor

.getColumnIndex(DataDefine.KEY_MSG_CONTENT));

// if(s.length()>10){

// s=s.substring(0,10)+"......";

// }

map.put("content", (i++) + ". " + s);

list.add(map);

} while (cursor.moveToNext());

cursor.close();

return list;

} else {

cursor.close();

Map<String, String> map = new HashMap<String, String>();

map.put("id", null);

map.put("content", "当前没有短信!");

list.add(map);

return list;

}

 

}

 

当点击批量删除时

 

listv.setVisibility(View.GONE);

smsback.setVisibility(View.GONE);

listv2.setVisibility(View.VISIBLE);

smsbackbrfore.setVisibility(View.VISIBLE);

btChoseall.setVisibility(View.VISIBLE);

btDelete.setVisibility(View.VISIBLE);

ListViewAdapter adapter = new ListViewAdapter(MsgStoreActivity.this, list, R.layout.sms_delete,

new String[] { "content" }, new int[] { R.id.content });

listv2.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);

listv2.setAdapter(adapter);

创建删除和全选按钮事件

 

btChoseall.setOnClickListener(new View.OnClickListener() {

 

@Override

public void onClick(View v) {

CheckedTextView cv;

for (int i = 0; i < listv2.getCount(); i++) {

cv = (CheckedTextView) listv2.getChildAt(i);

cv.setChecked(true);

}

 

}

});

btDelete.setOnClickListener(new View.OnClickListener() {

@Override

public void onClick(View v) {

CheckedTextView cv;

int count = 0;

for (int i = 0; i < listv2.getCount(); i++) {

cv = (CheckedTextView) listv2.getChildAt(i);

if (cv.isChecked()) {

count = 1;

break;

}

}

 

if (count == 1)

adDelete.show();

else

showToast(MsgStoreActivity.this, "未选中信息!");

 

}

});

创建删除按钮点击后的弹出对话框事件

 

adDelete = new AlertDialog.Builder(MsgStoreActivity.this)

.setTitle("删除").setMessage("确定要删除信息?")

.setNegativeButton("取消", new DialogInterface.OnClickListener() {

 

@Override

public void onClick(DialogInterface dialog, int which) {

dialog.dismiss();

 

}

})

.setPositiveButton("确定", new DialogInterface.OnClickListener() {

 

@Override

public void onClick(DialogInterface dialog, int which) {

CheckedTextView cv;

for (int i = 0; i < listv2.getCount(); i++) {

cv = (CheckedTextView) listv2.getChildAt(i);

if (cv.isChecked()) {

Map<?, ?> map = (Map<?, ?>) listv.getAdapter()

.getItem(i);

new DatabaseHelper().delete(

MsgStoreActivity.this,

Integer.valueOf((String) map.get("id")));

}

}

showToast(MsgStoreActivity.this, "信息已删除!");

updataview();

}

}).create();


  • 大小: 32.7 KB
  • 大小: 26.1 KB
  • 大小: 35.8 KB
分享到:
评论
1 楼 h00473 2013-04-30  
希望能分享下你的源码,谢谢了

相关推荐

    Android版短信 筛选/批量删除 程序(支持Android2.3~ 4.4)

    在Android平台上,开发一个短信筛选和批量删除程序是一项常见的需求,尤其对于那些经常接收大量信息的用户来说。本文将深入探讨如何为Android 2.3到4.4版本的设备构建这样的应用程序,涵盖的主要知识点包括Android ...

    android删除手机短信

    1. **批量删除**:在会话列表中,你可以通过多选功能来批量删除短信。通常,长按一条短信后,屏幕顶部会出现“多选”选项,勾选需要删除的短信,最后点击“删除”。 2. **设置自动删除**:进入手机的“设置” -&gt; ...

    Android 一个批量删除联系人的Demo.zip

    这个"Android 一个批量删除联系人的Demo.zip"提供了一个实例,展示了如何在Android应用中实现批量删除联系人的功能。接下来,我们将深入探讨这个Demo涉及的核心知识点。 1. **Android权限**: 在Android系统中,对...

    Android例子源码可以定时批量发送短信的短信时光机.rar

    Android例子源码可以定时批量发送短信的短信时光机是一个可以自定义定时批量短信发送例子源码(类似于短信时光机),编辑的短信可以一键选择多个联系人进行定时发送,批量发送祝福短信这种情况在节假日是普遍存在的...

    Android例子源码可以定时批量发送短信的短信时光机

    Android例子源码可以定时批量发送短信的短信时光机是一个可以自定义定时批量短信发送例子源码(类似于短信时光机),编辑的短信可以一键选择多个联系人进行定时发送,批量发送祝福短信这种情况在节假日是普遍存在的...

    SMS.rar_android_android 收发 短信_android 服务_android 短信_sms

    这个“SMS.rar”压缩包文件似乎包含了一个自定义开发的Android短信收发系统,适用于特定的办公或业务需求。下面,我们将深入探讨Android SMS相关的技术知识,以及如何构建这样的系统。 一、Android SMS API ...

    手机短信删除

    2. **批量删除**:如果需要删除同一会话或特定联系人的所有短信,可以使用批量选择功能,一次性清理。 3. **自动清理**:许多手机有自动清理功能,如设定保留最近的一定数量的短信,超过则自动删除较旧的。 4. **...

    Android之SMS短信和Contacts联系人实例

    SmsManager提供了发送文字短信、彩信以及批量发送短信的接口。例如,要发送一条短信,你需要获取SmsManager的实例,然后调用sendTextMessage方法,传入接收方电话号码、短信内容以及发送状态回调的BroadcastReceiver...

    基于web的Android安卓手机短信管理程序

    这种设计极大地简化了短信的批量处理,例如,用户可以一次性删除特定号码的所有短信,避免了在手机上逐条操作的繁琐。 系统的主要功能包括: 1. **系统登录**:用户需要通过Web界面登录自己的账户,确保只有授权的...

    sim联系人的增删改查

    在Android系统中,SIM卡联系人是用户存储在手机SIM卡上的电话号码和联系信息,它们与手机内置的联系人存储区分开。本教程将详细讲解如何进行SIM卡联系人的增删改查操作,以及如何利用`ContentObserver`来监听联系人...

    android通讯录

    2. 自定义对话框:为了提供更好的用户体验,项目采用了自定义对话框来处理如打电话、发短信和批量删除等操作。自定义对话框可以按照设计需求定制样式和功能,提高应用的交互性和美观性。 3. Android Content ...

    SimpleSMSManager:这是一个简单的短信管理器项目,实现了基本的短信功能:发送短信、删除短信、提取系统联系人号码等

    通过执行SQL语句,可以实现对特定短信的删除,或者批量删除选定的短信。 接下来,项目的一个亮点是与联系人的集成。SimpleSMSManager不仅能够提取系统联系人的电话号码,还能够展示联系人的头像。这涉及到对Android...

    android 远程登录注册

    在这个简单的Android程序中,重点是实现用户批量删除的操作,这对于数据管理和用户隐私保护具有重要意义。 首先,让我们详细探讨登录和注册流程。在Android应用中,登录通常涉及到以下几个步骤: 1. 用户界面:...

    Android项目源码可做毕设的简单学生管理系统

    这个项目的核心在于利用Android平台开发一个实用且易于理解的学生管理应用,主要功能包括短信群发和JSON数据批量导入数据库。 一、Android平台介绍 Android是Google主导开发的开源移动操作系统,广泛应用于智能手机...

    android手机助手

    用户可以通过该助手整合和备份联系人信息,防止丢失,并能方便地管理短信,包括批量删除、分类或搜索特定信息。 电源管理是Android手机助手的另一个亮点,它能智能分析各个应用的耗电情况,提供电池使用报告,并给...

    多方发送短信及数据库

    在实际开发中,你可能还需要处理诸如CheckBox选中状态的同步、ListView滚动时的状态保持、以及批量操作(如一键发送短信给所有选中联系人)等功能。 总的来说,这个项目是一个集成短信发送和数据库管理的Android...

    腾讯云sms短信服务sdk含核心jar包:qcloudsms-1.0.5.jar

    - 签名管理:查询、创建、删除短信签名。 ### 5. 注意事项 在实际使用过程中,确保遵循腾讯云的使用政策,防止恶意发送或滥用短信服务。另外,对于敏感操作(如批量发送、修改模板),建议使用沙箱环境测试,避免...

    android手机卫士系统设计.doc

    Android 手机卫士系统是指一款旨在帮助用户更加方便使用手机的系统,该系统主要包括显示系统软件和本地软件的详细信息,删除应用程序,结束进程,清理缓存以便手机运行的更流畅;通讯录添加黑名单可以帮助用户免...

    android系统常用数据库

    - 使用批量操作提高插入、更新和删除效率,例如:SQLiteStatement对象的executeInsert()和executeUpdateDelete()方法。 7. 数据备份与恢复: - 使用adb工具进行数据库文件的备份和恢复。 - 利用SQLite的ATTACH ...

    安卓短信彩信相关相关-发送短信长短信群发短信.rar

    需要注意的是,由于运营商和国家政策的限制,批量发送短信可能会触发安全机制,导致发送失败或被限制。因此,在实际应用中,可能需要设置合理的发送间隔或使用第三方服务。 4. **权限管理**:在Android 6.0(API...

Global site tag (gtag.js) - Google Analytics