phone
文章平均质量分 81
NeXtyin
这个作者很懒,什么都没留下…
展开
-
1.自定义控件--自定义属性attr
1 属性文件 values-attrs 2 自定义控件 package org.heima.原创 2017-01-25 20:31:45 · 675 阅读 · 0 评论 -
11.ExpandableListView
1 布局<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" >原创 2017-02-19 10:35:55 · 281 阅读 · 0 评论 -
10.自定义Dialog--dialog的动画
1 点击弹出dialog@OnClick(R.id.siv_style_address) public void setStyleAddress(View view) { final AddressDialog addressDialog = new AddressDialog(this); mAddressAdapter = new AddressAdapter(); addr原创 2017-02-18 17:49:07 · 373 阅读 · 0 评论 -
9.来电显示归属地--自定义Toast
1 点击按钮开启归属地显示服务@OnClick(R.id.siv_address) public void setAddress(View view) { Intent service = new Intent(this, AddressService.class); if (ServiceStatusUtils.isServiceRunning(this, AddressServi原创 2017-02-18 14:15:58 · 778 阅读 · 0 评论 -
8.给TextView及其子类设置图片
1private void initState() { if (mDpm.isAdminActive(mWho)) { ImageTextViewUtils.setTextViewImage(this, btnAdmin, R.drawable.admin_activated, ImageTextViewUtils.RIGHT); } else { ImageTe原创 2017-02-18 11:58:13 · 266 阅读 · 0 评论 -
7.自定义Toast
1 布局文件<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="m原创 2017-02-18 00:12:01 · 282 阅读 · 0 评论 -
6.拷贝数据库--SQLiteDatabase.openDatabase()
1 package org.heima.mobilesafe01.utils;import java.io.File;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.FileOutputStream;import java.io.IOException;impor原创 2017-02-16 22:15:17 · 3978 阅读 · 0 评论 -
5.短信和电话拦截的服务--判断服务是否在运行(开关服务)
1 判断服务是否在运行package org.heima.mobilesafe01.utils;import java.util.List;import android.app.ActivityManager;import android.app.Service;import android.app.ActivityManager.RunningServiceInfo;impor原创 2017-02-16 21:57:30 · 622 阅读 · 0 评论 -
4.数据库的创建(黑名单)--另 单元测试
1数据库的beanpackage org.heima.mobilesafe01.bean;public class BlackInfo { public int _id;// public String phone; public int _type; @Override public String toString() { return "BlackInfo [_id="原创 2017-02-05 23:32:23 · 1910 阅读 · 0 评论 -
3.drawable下创建ProgressBar的可做动画的图片
<translate xmlns:android="http://schemas.android.com/apk/res/android" android:fromXDelta="100%" android:toXDelta="0%" android:duration="200" >1 布局中的ProgressBar <ProgressBar原创 2017-02-05 23:25:31 · 299 阅读 · 0 评论 -
2.定位、擦除数据、锁屏、激活设备管理员(LocationManager、DevicePolicyManager)
1 一个短信广播接收者,用于安全号码控制丢失手机播放报警音乐、锁屏等package org.heima.mobilesafe01.receiver;import org.heima.mobilesafe01.R;import org.heima.mobilesafe01.constants.Constants;import org.heima.mobilesafe01.service.原创 2017-02-04 22:24:12 · 1056 阅读 · 0 评论 -
12.PackageManager&&Popwindow必须设置背景
PopwindowmLvApp.setOnItemClickListener(new OnItemClickListener() { @ViewInject(R.id.tv_uninstall) TextView tvUnInstall; @ViewInject(R.id.tv_open) TextView tvOpen; @ViewInject(R.id.tv_原创 2017-02-19 23:11:31 · 447 阅读 · 0 评论