- 浏览: 527515 次
- 性别:
- 来自: 上海
最新评论
-
c7887qin:
貌似还要使用相同的证书进行签名。。。
Android - 如何将两个/多个应用放到一个进程中去? -
北极光之吻:
天天向上1989 写道不是有OnDoubleTapListen ...
android实现双击事件监听 -
nielong123:
nielong123 写道onCheckedChanged(M ...
Android RadioGroup 换行, 支持多行多列 -
nielong123:
onCheckedChanged(MultiRadioGrou ...
Android RadioGroup 换行, 支持多行多列 -
zk_Ming:
zk_Ming 写道我用了你的,但是radiogroup 点击 ...
Android RadioGroup 换行, 支持多行多列
文章列表
在某些场合可能需要禁止横屏和竖屏切换,实现这个要求很简单,只要在AndroidManifest.xml里面加入这一行android :screenOrientation="landscape "(landscape 是横向,portrait 是纵向)。不过android中每次屏幕的切换动会重启Activity,所以应该在Activity销毁前保存当前活动的状态,在Activity再次Create的时候载入配置。在activity加上android:configChanges="keyboardHidden|orientation"属性,就不会重启activ ...
Working With Android Contacts
1.x Data access class
This class is made up of the code explained covering version 1.x of the Android contact API. As with the 2.0 class this class extends the ContactAPI wrapper class and will be invoked by it if the 1.x version of Android is in use.
package com.hig ...
Working With Android Contacts
Wrapper class
The wrapper class below is what will be invoked by applications. This class will determine the API level running on the device/emulator and load the correct class created on the next pages. To determine the correct Android API running the Build.VERSION.SD ...
Working With Android Contacts
轻松玩转Android联系人
Gluing it together
把两个版本结合起来
To put this together into an application there are a few glue pieces that need to
be setup along with creating classes to manage accessing the data. First we need to create a set of classes to hold the data. Also we'll create ...
Android联系人数据库全解析(2)
Android 1.6以及以前的版本API
本节的开头跟上一节的开头很相似。本节所要介绍的内容将是独立的介绍1.6以及以前版本的API
权限的授予
在操作联系人记录之前,你必须在AndroidManifest.xml中声明权限。这样你才能被授权查看联系人。增加下述权限:
<uses-permission android:name="android.permission.READ_CONTACTS" />
查询联系人数据库
查询联系人详细信息
为了规范信息,基本的联系人信息放在联系人表里,而其他的详细信息则被 ...
from (http://www.higherpass.com/Android/)
Android 联系人应用
Android 联系人说明
学习应用Android联系人数据库,在掌握Android SQLite的基础上,还要熟练应用数据指针(cursor)。我们可以查看有关Android SQLite 和 Cursor的文章来获取更多的内容。谷歌(Google)更换了Android 1.x和2.x的联系人数控库版本。本文分为三节,第一节将介绍Android 2.0的联系人。第二节将介绍怎么处理Android 1.6以及以前版本的联系人。而第三节,将会把这两个版本结合起来。创建一个类来抽象各个 ...
CMCC
您可以在手机没电、关机、没信号、不想接听或忘带手机等情况下,将来电转移到预先设定的语音信箱服务号码、来电提醒服务号码、移动秘书服务号码或普通电话号码上,以使您的接听方式更灵活。 开通与取消
无需申请即可开通,该业务无需取消 使用方式
1、拨打 10086,输入服务密码后,根据提示进行设置;
2、登录网站( www.hb.chinamobile.com)的自助服务设置呼叫转移;
3、菜单操作方法举例如下:
NOKIA:菜单--进入呼叫转接--选择其中的设置方法--设置呼转号码--确认后设置完毕
MOTOROLA:菜单--通话菜单--呼入转移--选择设置方法--设置呼转号码--确认后设置 ...
显示网页:
1. Uri uri = Uri.parse("http://www.google.com");
2. Intent it = new Intent(Intent.ACTION_VIEW,uri);
3. startActivity(it);
显示地图:
1. Uri uri = Uri.parse("geo:38.899533,-77.036476");
2. Intent it = new Intent(Intent.Action_VIEW,uri);
3. startActivity(it);
路径规划:
...
TelephonyManager tel = (TelephonyManager) context
.getSystemService(Context.TELEPHONY_SERVICE);
String simOperator = tel.getSimOperator();
IMSI共有15位,其结构如下:
MCC+MNC+MIN
MCC:Mobile Country Code,移动国家码,共3位,中国为460;
MNC:Mobile Network Code,移动网络码,共2位,电信03,移动 ...
1、Drawable → Bitmap
Java代码
public static Bitmap drawableToBitmap(Drawable drawable) {
Bitmap bitmap = Bitmap
.createBitmap(
drawable.getIntrinsicWidth(),
drawable.getIntrinsicHeight(),
drawable.getOpacity() != PixelFormat.OPAQUE ? Bitmap.Config.ARGB_8888
: Bi ...
如果不是用系统自带的短信发送Activity,那么我们自己发送到短信会有很多功能无法实现。例如,不知道短信当前的发送状态,不知道对方的接收情况。所以,我们要对发送后的短信进行侦听:
SmsManager.sendTextMessage(String destinationAddress, String scAddress, String text, PendingIntent sentIntent, PendingIntent deliveryIntent)
1. 传入参数:sentIntent
2. 注册BroadcastReceiver 用于接受sentIntent
pub ...
The four corners are unscaled; the four edges are scaled in one axis, and the middle is scaled in both axes.
9分图的四个角不作任何伸展,四个边分别只作水平和垂直伸展,中间部分则是水平跟垂直同事伸展,这就是著名的9-patch图,很多作背景的时候,一个很小像素数的图就可以无限的伸展为某控件背景。
1.String 不可变的字符串,每次修改(除String s = "1" + "abc" + "cfd";这种情况之外)都会创建新的String对象,占用不必要的内存
2.StringBuffer 可变的线程安全的字符序列,在需要时扩充字符容量,修改时不会创建新的对象
3.StringBuilder 可变的字符序列,在需要时扩充字符容量,修改时不会创建新的对象
应用总结:大多数情况下,这三种字符串对象的使用频率一次为:StringBuilder 〉StringBuffer 〉String
注:在线程操作频繁的时候,要注意考虑是否使用 ...
在xml文件中使用android:textStyle=”bold” 可以将英文设置成粗体,
但是不能将中文设置成粗体,
将中文设置成粗体的方法是:
TextView tv = (TextView)findViewById(R.id.TextView01);
TextPaint tp = tv.getPaint();
tp.setFakeBoldText(true);