- 浏览: 73610 次
- 性别:
- 来自: 深圳
最新评论
-
yanjunhui2011:
http://download.csdn.net/detail ...
listview中添加checkbox,并分别添加两者的点击事件 -
kondoh:
来回复制粘贴的
软键盘弹出挤压画面的问题 -
hxycity:
我用的 TYPE_KEYGUARD 也可以屏蔽 home
android如何屏蔽home back power按键 -
ableouou:
fish007fish2003 写道我的布局里面也有listv ...
软键盘弹出挤压画面的问题 -
qingchengbuzai:
如果要屏蔽手机自带的menu长按搜索功能,代码怎么写,楼主指教 ...
android如何屏蔽home back power按键
文章列表
(转载)java中的日期处理类总结:Date/Calendar/GregorianCalendar/DateFormat/SimpleDateFormat类2010-02-12 00:451、 Date类(该类现在很少用了)
l Date类对象的创建:
n 创建一个当前时间
//默认是创建一个代表系统当前日期的Date对象
Date d = new Date();
n 创建一个我们指定的时间的Date对象:
下面是使用带参数的构造方法,可以构造指定日期的Date类对象,Date类中年份的参数应该是实际需要代表的年份减去1 ...
ConnectivityManager mConManager = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
if (mConManager.getActiveNetworkInfo() != null) {
if (!mConManager.getActiveNetworkInfo().isAvailable()) {
//添加代码
}
;
...
inflate方法总共有四种形式,把xml表达的layout转化为view. This class is used to instantiate layout xml files into its corresponding view object. It is never be used directly——use getLayoutInflater() or getSystemService(String)getLayoutInflate() or getSystemService(String) to retrieve a standard LayoutInflater instance ...
WindowManager windowManager = (WindowManager)
getSystemService(Context.WINDOW_SERVICE);
targetHeight = windowManager.getDefaultDisplay().getHeight();//获得高度,获得宽度也类似
直接上代码:注意添加权限<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"></uses-permission>
import android.app.Activity;
import android.content.Context;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManage ...
if (android.os.Environment.getExternalStorageState().equals(
android.os.Environment.MEDIA_MOUNTED))//sd存在并可写
{
//存在需要的操作
}
else
{
Toast.makeText(SearchBooks.this, getResources().getText(R.string.no_sdcard), Toast.LENGTH_SHORT).show();//提示不存在
}
1.首先,如果要程序自动适应系统语言进行转变,可以在res下添加相应的语言文件夹:如:添加中文,则文件夹命名为values-zh-rCN,如果不清楚需要的名字可以到:E:\android-sdk-windows\platforms\android-8\data\res,如这样的文件夹下寻找。这样就可以让程序自动适应系统的语言来选择语言。
2.如果我们想在程序内部可以手动地选择语言则:
a.首先获得当前的语言或者国家:
String able= getResources().getConfiguration().locale.getCountry();
b.进行判断:如果是中文则返回的 ...
使用SMS在自己的程序中:
1. 我们可以通过使用SMSManager来代替本身的SMS应用程序来收发短信或者使用SMS来作为数据传输层。
2. SMS并不能响应实时的需求。
3. 发送SMS短讯:SmsManager smsManager=SmsManager.getDefault();
4. 需要权限android.permission.SEND_SMS
5. String sendTo=”2353432”; String mMessage=”it is a pig”;
6. smsManager.sendTextMessage(sendTo,null,mMessage,null,null( ...
stroke用于描边画虚线,它的参数主要有以下 android:Width设置画笔的粗细,android:dashWidth 设置每段小横线的长度 android:deshGap 设置小横线之间的宽度 其他参数包括颜色等,略...
主要是为了学习自定义控件,如何添加属性以及修改方法等等。
为模拟时钟添加了秒针走动。
效果如附件。
package com.able.widget;
import java.util.TimeZone;
import com.able.test.R;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.content.res. ...
咕~~(╯﹏╰)b,最近弄textview的淡入淡出效果时候,遇到大文件在viewflipper+scrollview+textview遇到上诉问题。
解决方法:使用viewflipper+layout+scrollview+textview
这个机制是可以接收我们启动的新的activity的返回值,并且在调用的activity中作出相应的操作。
举例:activity A、B;
A:startActivityForResult(intentToB,requestCode)
B:setResult(result_ok,intentToA)//result_ok,可以为自己设定的任何值,主要是在A中进行判断是否为所需要的resultCode
A:onActivityResult(int requestCode,int ResultCode, Intent data)
//data 附带需要传递的参数
{
switch(resul ...