下面的代码将会返回一个unique 64-bit hex 字符串,每个android都是唯一的// from www.75271.comimport android.provider.Settings.Secure;private String android_id = Secure.getString(getContext().getConten……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1239浏览 1754个赞
这段Android代码从InputStream读取内容到字符串。可以用于任何类型的InputStream,包括从HttpClient获取的HttpResponse使用 inputStreamToString(response.getEntity().getContent())从HttpResponse 读取// Fast Implementation……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1432浏览 2121个赞
Android通过AES128加密解密字符串package net.sf.andhsli.hotspotlogin;import java.security.SecureRandom;import javax.crypto.Cipher;import javax.crypto.KeyGenerator;import javax.crypto……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2214浏览 1952个赞
Android下通过wifi调用打印机打印// Code in Activitytry { Socket sock = new Socket("192.168.199.245", 9100); // ip and port of printer PrintWriter oStream = new PrintWriter(s……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2755浏览 1237个赞
Android中获取IMEI码及其它相关信息的代码转自:http://blog.csdn.net/sergeycaoImei = ((TelephonyManager) getSystemService(TELEPHONY_SERVICE)).getDeviceId();1.加入权限在manifest.xml文件中要添加 ……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2464浏览 2614个赞
Android屏幕旋转和Configuration的使用演示转自:http://blog.csdn.net/lfdfhl/ MainActivity如下:package cn.testconfigurationchange; import android.os.Bund……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2770浏览 530个赞
android ui的几个概念:px,dip(dp),sp,dpi,分辨率等转自:http://blog.csdn.net/lamp_zy/1.px (pixels)像素 – 是像素,就是屏幕上实际的像素点单位。 dip或dp (device ……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1446浏览 2588个赞
Android下图片的放大和缩小代码/** * * @author chrp * *图片 的放大 缩小 */public class TouchImageViewActivity extends Activity { /** Called when the activity is first created. */ ……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2885浏览 687个赞
Android下实现帧动画效果代码转自:http://blog.csdn.net/chrp99/ 新建一个framebyframe.xml文件<animation-list xmlns:android="http://schemas.android.com/ap……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1316浏览 2260个赞
Android图形图像与动画开发之Paint和Canvas类 * Paint类 * Paint类代表画笔,用来描述图形的颜色和风格,如线宽,颜色,透明度和填充效果等信息。 * 使用Paint类时,需要先创建该类的对象,可以通过该类的构造函数实现。通常情况的实现代码是: * Paint paint=new Paint(); * 创建完Paint对象后,可以通……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2630浏览 2572个赞
Android开发中从SQLite数据库获取新插入数据自增长的ID值使用last_insert_rowid()函数转自:http://blog.csdn.net/ssun125/article/details/7628071 SQLiteDatabase db = helper.getWritableDatabase(); ……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2199浏览 354个赞
android 设计带图片的文本框代码基本原理自定义一个IconTextView类继承自TextView,添加iconsrc属性,表示图片。重新onDraw方法,将图片绘制到textVIew前面,然后将textView右移。废话不多说了,直接代码就明白。转自:http://blog.csdn.net/hopezhangbo/article/details/7……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2430浏览 1860个赞
android的ScrollView控件默认是没有反弹效果的,当滑动到边缘的时候便不能继续滑动。这里通过自定义ScrollView来实现反弹效果。看下面的效果图,红色图片在最左边,android默认ScrollView控件红色图片在最左边的时候是不能向右滚动的。这里是水平滚动,我们可以通过自定义类继承自HorizontalScrollView类来实现。转自:……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2768浏览 547个赞
在玩一个GPS的东西 获取Location一直为null 后来是从onLocationChanged里面拿location才搞定了 贴一下吧 代码太乱http://blog.csdn.net/hopezhangbo/article/details/7384142/** * 主要是用户定位操作 *@author hope */ ……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1882浏览 1023个赞
Android开发的斗地主牌桌实现代码来源:http://blog.csdn.net/hopezhangbo/article/details/7434284 发一个Android斗地主游戏的牌桌实现。为了节约内存资源,每张扑克牌都是剪切形成的,当然这也是当前编程的主流方法。1、主A……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1245浏览 2251个赞
方法如下:在程序中加入//remove title 的那部分代码即可实现。package cn.edu.pku; import android.app.Activity; import android.os.Bundle; import android.view.Window; import android.view.WindowMan……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1440浏览 547个赞
Android系统键盘弹出时挡住文本框的解决方法 在manifest的activity节点使用 Xml代码android:windowSoftInputMode的使用。activity如何与软键盘交互。这个属性的设置将会影响两件事情:1> ……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1887浏览 954个赞
Android开发中使用GridView实现数据网格显示转自:http://blog.csdn.net/ssun125/article/details/7627135 UsingGridView.java代码package com.sinaapp.ssun.girdview;im……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2616浏览 1927个赞
Android无标题栏、全屏注意在setContentView()之前调用,否则无效。//无标题栏 requestWindowFeature(Window.FEATURE_NO_TITLE); //全屏模式 getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, ……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1754浏览 510个赞
Android查看数否有SD卡插入的代码String status=Environment.getExternalStorageState();if(status.equals(Enviroment.MEDIA_MOUNTED)){ //说明有SD卡插入}……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2503浏览 2326个赞
OnCreate 中不设Layout以下是 Theme_Transparent的定义(注意transparent_bg是一副透明的图片)this.setTheme(R.style.Theme_Transparent);……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2732浏览 2587个赞
使用Activity.findViewById来取得屏幕上的元素的句柄. 使用该句柄您可以设置或获取任何该对象外露的值.TextView msgTextView = (TextView)findViewById(R.id.msg); msgTextView.setText(R.string.push_me);……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1431浏览 1296个赞
Android发送短信的代码String body=”this is mms demo”; Intent mmsintent = new Intent(Intent.ACTION_SENDTO, Uri.fromParts(”smsto”, number, null)); mmsintent.putExtra……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2330浏览 307个赞
Android发送彩信的代码 StringBuilder sb = new StringBuilder(); sb.append(”file://”); sb.append(fd.getAbsoluteFile()); Intent intent = new Inten……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1386浏览 132个赞
Android发送mail的代码mime = “img/jpg”; shareIntent.setDataAndType(Uri.fromFile(fd), mime); shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(fd)); ……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1641浏览 1853个赞
Android中注册一个 BroadcastReceiverregisterReceiver(mMasterResetReciever, new IntentFilter(”oms.action.MASTERRESET”));private BroadcastReceiver mMasterResetReciever = new BroadcastR……继续阅读 » 水墨上仙 4年前 (2021-03-31) 3043浏览 1343个赞
Android定义ContentObserver,监听某个数据表private ContentObserver mDownloadsObserver = new DownloadsChangeObserver(Downloads.CONTENT_URI);private class DownloadsChangeObserver extends C……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2595浏览 2188个赞
Android获得手机UA的代码public String getUserAgent() { String user_agent = ProductProperties.get(ProductProperties.USER_AGENT_KEY, null); return user_agent; ……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1984浏览 801个赞
Android清空手机上的cookie代码CookieSyncManager.createInstance(getApplicationContext()); CookieManager.getInstance().removeAllCookie();……继续阅读 » 水墨上仙 4年前 (2021-03-31) 3035浏览 2910个赞
Android建立gprs连接代码//Dial the GPRS link. private boolean openDataConnection() { // Set up data connection. DataConnection conn = DataConnection.getInstance(); ……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2252浏览 2661个赞
Android开发PreferenceActivity 用法public class Setting extends PreferenceActivity{ public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2435浏览 1627个赞
Android代码显示toastToast.makeText(this._getApplicationContext(), R.string._item, Toast.LENGTH_SHORT).show();或者写成函数形式:public void Display(String str) {Toast.[i]makeText[/i](, ……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2443浏览 538个赞
Android获得屏幕高度DisplayMetrics dm = new DisplayMetrics(); //获取窗口属性getWindowManager().getDefaultDisplay().getMetrics(dm); int screenWidth = dm.widthPixels;//320 int screen……继续阅读 » 水墨上仙 4年前 (2021-03-31) 3102浏览 2011个赞
自动检测移动设备浏览器并自适应宽度的CSSExtended css media queries for modern mobile screens/* Desktops and laptops ----------- */ @media only screen and (min-width : 1224px) { /* Styl……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2280浏览 2290个赞
Android获得SD卡剩余容量的代码File pathFile = Environment.getExternalStorageDirectory();StatFs statfs = new StatFs(pathFile.getPath());//获得可供程序使用的Block数量long nAvailaBlock = statfs.getAv……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1853浏览 1927个赞
Android列出所有音乐文件//Some audio may be explicitly marked as not being musicString selection = MediaStore.Audio.Media.IS_MUSIC + " != 0";String[] projection = { M……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2108浏览 2229个赞
Android的类模板代码package xxPACKAGENAMExx;import android.app.Activity;import android.os.Bundle;public class xxCLASSNAMExx extends Activity { /** Called when the activity is fi……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1910浏览 1598个赞
Android带title、message、图标和按钮的对话框AlertDialog alertDialog = new AlertDialog.Builder(this).create();alertDialog.setTitle("Title");alertDialog.setMessage("Message&qu……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1431浏览 147个赞
Android Notification通知详解 Android Notification通知详解根据activity的生命周期,在activity不显示时,会执行onStop函数(比如按下home键),所以你在onStop函数(按退出键除外)里面把notifica……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2235浏览 377个赞
此代码在后台运行,检测是否有心的版本,如果有则弹出提示框提示用户到电子市场升级。public class Test extends Activity { private Handler mHandler; @Override public void onCreate(Bundle savedInstanceState) { ……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2903浏览 1564个赞
在Android启动时自动运行应用程序in AndroidManifest.xml (application-part):<receiver android:enabled="true" android:name=".BootUpReceiver" android:permission=&……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1269浏览 1396个赞
Android一个简单的警告框,带标题、图标、按钮AlertDialog alertDialog = new AlertDialog.Builder(this).create();alertDialog.setTitle("Title");alertDialog.setMessage("Message");……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1867浏览 2292个赞
Android AsyncTask异步处理抓取网页/** * * @author yanggang * @see http://blog.csdn.net/sunboy_2050 */public class MainActivity extends Activity { private EditText metURL; private……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1863浏览 2681个赞
android socket传输序列化对象来源:http://blog.csdn.net/cq361106306/article/details/8107105 最好只传基本数据类型,基本数据类型不需要序列化在上一篇socket传输的基础上改即可添加一个类,继承Serializab……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2658浏览 1897个赞
Android软键盘的隐藏显示、事件监听 Android是一个针对触摸屏专门设计的操作系统,当点击编辑框,系统自动为用户弹出软键盘,以便用户进行输入。    那么,弹出软键盘后必然会造成原有布局高度的减少,那么系统……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1437浏览 1243个赞