Android中获取IMEI码及其它相关信息的代码转自:http://blog.csdn.net/sergeycaoImei = ((TelephonyManager) getSystemService(TELEPHONY_SERVICE)).getDeviceId();1.加入权限在manifest.xml文件中要添加 ……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2749浏览 2067个赞
Android屏幕旋转和Configuration的使用演示转自:http://blog.csdn.net/lfdfhl/ MainActivity如下:package cn.testconfigurationchange; import android.os.Bund……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2408浏览 500个赞
android ui的几个概念:px,dip(dp),sp,dpi,分辨率等转自:http://blog.csdn.net/lamp_zy/1.px (pixels)像素 – 是像素,就是屏幕上实际的像素点单位。 dip或dp (device ……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1281浏览 2558个赞
Android下图片的放大和缩小代码/** * * @author chrp * *图片 的放大 缩小 */public class TouchImageViewActivity extends Activity { /** Called when the activity is first created. */ ……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1666浏览 2743个赞
Android下实现帧动画效果代码转自:http://blog.csdn.net/chrp99/ 新建一个framebyframe.xml文件<animation-list xmlns:android="http://schemas.android.com/ap……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2502浏览 2267个赞
Android图形图像与动画开发之Paint和Canvas类 * Paint类 * Paint类代表画笔,用来描述图形的颜色和风格,如线宽,颜色,透明度和填充效果等信息。 * 使用Paint类时,需要先创建该类的对象,可以通过该类的构造函数实现。通常情况的实现代码是: * Paint paint=new Paint(); * 创建完Paint对象后,可以通……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1848浏览 2951个赞
Android开发中从SQLite数据库获取新插入数据自增长的ID值使用last_insert_rowid()函数转自:http://blog.csdn.net/ssun125/article/details/7628071 SQLiteDatabase db = helper.getWritableDatabase(); ……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1907浏览 1118个赞
android 设计带图片的文本框代码基本原理自定义一个IconTextView类继承自TextView,添加iconsrc属性,表示图片。重新onDraw方法,将图片绘制到textVIew前面,然后将textView右移。废话不多说了,直接代码就明白。转自:http://blog.csdn.net/hopezhangbo/article/details/7……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2402浏览 603个赞
android的ScrollView控件默认是没有反弹效果的,当滑动到边缘的时候便不能继续滑动。这里通过自定义ScrollView来实现反弹效果。看下面的效果图,红色图片在最左边,android默认ScrollView控件红色图片在最左边的时候是不能向右滚动的。这里是水平滚动,我们可以通过自定义类继承自HorizontalScrollView类来实现。转自:……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1202浏览 1683个赞
在玩一个GPS的东西 获取Location一直为null 后来是从onLocationChanged里面拿location才搞定了 贴一下吧 代码太乱http://blog.csdn.net/hopezhangbo/article/details/7384142/** * 主要是用户定位操作 *@author hope */ ……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2911浏览 2682个赞
Android开发的斗地主牌桌实现代码来源:http://blog.csdn.net/hopezhangbo/article/details/7434284 发一个Android斗地主游戏的牌桌实现。为了节约内存资源,每张扑克牌都是剪切形成的,当然这也是当前编程的主流方法。1、主A……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2758浏览 496个赞
方法如下:在程序中加入//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) 2058浏览 808个赞
Android系统键盘弹出时挡住文本框的解决方法 在manifest的activity节点使用 Xml代码android:windowSoftInputMode的使用。activity如何与软键盘交互。这个属性的设置将会影响两件事情:1> ……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1801浏览 1545个赞
Android开发中使用GridView实现数据网格显示转自:http://blog.csdn.net/ssun125/article/details/7627135 UsingGridView.java代码package com.sinaapp.ssun.girdview;im……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2014浏览 1635个赞
Android无标题栏、全屏注意在setContentView()之前调用,否则无效。//无标题栏 requestWindowFeature(Window.FEATURE_NO_TITLE); //全屏模式 getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, ……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2283浏览 445个赞
Android查看数否有SD卡插入的代码String status=Environment.getExternalStorageState();if(status.equals(Enviroment.MEDIA_MOUNTED)){ //说明有SD卡插入}……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1233浏览 1533个赞
OnCreate 中不设Layout以下是 Theme_Transparent的定义(注意transparent_bg是一副透明的图片)this.setTheme(R.style.Theme_Transparent);……继续阅读 » 水墨上仙 4年前 (2021-03-31) 3156浏览 862个赞
使用Activity.findViewById来取得屏幕上的元素的句柄. 使用该句柄您可以设置或获取任何该对象外露的值.TextView msgTextView = (TextView)findViewById(R.id.msg); msgTextView.setText(R.string.push_me);……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2974浏览 1652个赞
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) 3057浏览 128个赞
Android发送彩信的代码 StringBuilder sb = new StringBuilder(); sb.append(”file://”); sb.append(fd.getAbsoluteFile()); Intent intent = new Inten……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1799浏览 732个赞
Android发送mail的代码mime = “img/jpg”; shareIntent.setDataAndType(Uri.fromFile(fd), mime); shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(fd)); ……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1759浏览 2738个赞
Android中注册一个 BroadcastReceiverregisterReceiver(mMasterResetReciever, new IntentFilter(”oms.action.MASTERRESET”));private BroadcastReceiver mMasterResetReciever = new BroadcastR……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2017浏览 1424个赞
Android定义ContentObserver,监听某个数据表private ContentObserver mDownloadsObserver = new DownloadsChangeObserver(Downloads.CONTENT_URI);private class DownloadsChangeObserver extends C……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1180浏览 640个赞
Android获得手机UA的代码public String getUserAgent() { String user_agent = ProductProperties.get(ProductProperties.USER_AGENT_KEY, null); return user_agent; ……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2243浏览 2575个赞
Android清空手机上的cookie代码CookieSyncManager.createInstance(getApplicationContext()); CookieManager.getInstance().removeAllCookie();……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1567浏览 1777个赞
Android建立gprs连接代码//Dial the GPRS link. private boolean openDataConnection() { // Set up data connection. DataConnection conn = DataConnection.getInstance(); ……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2211浏览 2824个赞
Android开发PreferenceActivity 用法public class Setting extends PreferenceActivity{ public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1862浏览 1394个赞
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) 2671浏览 2637个赞
Android获得屏幕高度DisplayMetrics dm = new DisplayMetrics(); //获取窗口属性getWindowManager().getDefaultDisplay().getMetrics(dm); int screenWidth = dm.widthPixels;//320 int screen……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1341浏览 815个赞
自动检测移动设备浏览器并自适应宽度的CSSExtended css media queries for modern mobile screens/* Desktops and laptops ----------- */ @media only screen and (min-width : 1224px) { /* Styl……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1946浏览 421个赞
Android获得SD卡剩余容量的代码File pathFile = Environment.getExternalStorageDirectory();StatFs statfs = new StatFs(pathFile.getPath());//获得可供程序使用的Block数量long nAvailaBlock = statfs.getAv……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2146浏览 1282个赞
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) 1500浏览 2589个赞
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) 2710浏览 1389个赞
Android带title、message、图标和按钮的对话框AlertDialog alertDialog = new AlertDialog.Builder(this).create();alertDialog.setTitle("Title");alertDialog.setMessage("Message&qu……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1261浏览 2279个赞
Android Notification通知详解 Android Notification通知详解根据activity的生命周期,在activity不显示时,会执行onStop函数(比如按下home键),所以你在onStop函数(按退出键除外)里面把notifica……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2661浏览 390个赞
此代码在后台运行,检测是否有心的版本,如果有则弹出提示框提示用户到电子市场升级。public class Test extends Activity { private Handler mHandler; @Override public void onCreate(Bundle savedInstanceState) { ……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2762浏览 1928个赞
在Android启动时自动运行应用程序in AndroidManifest.xml (application-part):<receiver android:enabled="true" android:name=".BootUpReceiver" android:permission=&……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1931浏览 511个赞
Android一个简单的警告框,带标题、图标、按钮AlertDialog alertDialog = new AlertDialog.Builder(this).create();alertDialog.setTitle("Title");alertDialog.setMessage("Message");……继续阅读 » 水墨上仙 4年前 (2021-03-31) 3087浏览 2088个赞
Android AsyncTask异步处理抓取网页/** * * @author yanggang * @see http://blog.csdn.net/sunboy_2050 */public class MainActivity extends Activity { private EditText metURL; private……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2675浏览 2152个赞
android socket传输序列化对象来源:http://blog.csdn.net/cq361106306/article/details/8107105 最好只传基本数据类型,基本数据类型不需要序列化在上一篇socket传输的基础上改即可添加一个类,继承Serializab……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1844浏览 1403个赞
Android软键盘的隐藏显示、事件监听 Android是一个针对触摸屏专门设计的操作系统,当点击编辑框,系统自动为用户弹出软键盘,以便用户进行输入。    那么,弹出软键盘后必然会造成原有布局高度的减少,那么系统……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1175浏览 1299个赞
android中使用afinal一行代码显示网络图片public class DemoActivity extends FinalActivity { @ViewInject(id=R.id.imageView) ImageView imageView; //无需findViewById @Override public vo……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1983浏览 1515个赞
Android四分之一屏实现package com.example.oneoffourdemo;import android.app.ActivityGroup;import android.content.Context;import android.content.Intent;import android.os.Bundle;impor……继续阅读 » 水墨上仙 4年前 (2021-03-31) 3077浏览 2836个赞
在Android的布局文件中,往往使用dp作为控件的宽度和高度尺寸,但是在Java代码中,调用getWidth()方法获得的尺寸单位却是像素px,这两个单位有明显的区别:dp和屏幕的密度有关,而px与屏幕密度无关,所以使用时经常会涉及到两者之间的互相转化,代码示例如下:public int Dp2Px(Context context, float dp……继续阅读 » 水墨上仙 4年前 (2021-03-31) 3044浏览 1023个赞
Android获得当前安装的所有应用程序列表public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); lView = (ListView) findVie……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1887浏览 1181个赞