xamarin 可以很方便的编写一个电话拨号程序,下面的代码是调用android系统的拨号功能,拨号前会给出一个提示信息。 callButton是一个用来拨号的按钮,我们使用它的点击事件来进行拨号,拨号前会有一个提示框callButton.Click += (object se……继续阅读 » 水墨上仙 4年前 (2021-03-31) 3045浏览 3016个赞
Android自定义数字时钟代码package jp.tsmsogn.digitalclock; import java.util.Calendar; import android.content.Context;import android.os.Handler;import android.os.SystemClock;import ……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2443浏览 1571个赞
更新的android桌面上的应用程序的快捷方式图标转自:https://gist.github.com/xianminx/6110783 package com.example.dynamicappicon; import android.app.Activity;import android.content.Intent;import a……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1216浏览 2169个赞
Android环境下检测网络是否连通的代码,经常能用到。代码转自:http://blog.csdn.net/s04103037/package cn.com.karl.util;import com.kubu.main.R;import android.app.Activity;import android.app.AlertDialog;……继续阅读 » 水墨上仙 4年前 (2021-03-31) 3069浏览 307个赞
这段代码使用AlertDialog.Builder创建一个输入对话框,用户可以在EditText内输入相关的内容,可以点击Ok和Cancel按钮AlertDialog.Builder alert = new AlertDialog.Builder(this);alert.setTitle("Title");alert.setM……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1946浏览 1389个赞
在你的Android应用程序中集成Google Analytics,帮助你分析用户的访问量** Java Code **// Google Analytics private Tracker mGaTracker; private GoogleAnalytics mGaInstance;// Call this method from on……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2701浏览 2606个赞
两次按钮返回按钮,只在第二次按下时相应事件,并通知用户再次按下即可退出。private static long back_pressed;@Overridepublic void onBackPressed(){ if (back_pressed + 2000 > System.currentTimeMillis()) s……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1404浏览 367个赞
Android通过MediaPlay打开并播放媒体文件MediaPlayer mp = MediaPlayer.create(context, R.raw.sound_file_1);mp.start();……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1399浏览 2977个赞
下面的代码将会返回一个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) 2686浏览 1618个赞
这段Android代码从InputStream读取内容到字符串。可以用于任何类型的InputStream,包括从HttpClient获取的HttpResponse使用 inputStreamToString(response.getEntity().getContent())从HttpResponse 读取// Fast Implementation……继续阅读 » 水墨上仙 4年前 (2021-03-31) 3009浏览 2608个赞
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) 2866浏览 2389个赞
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) 3019浏览 2734个赞
Android中获取IMEI码及其它相关信息的代码转自:http://blog.csdn.net/sergeycaoImei = ((TelephonyManager) getSystemService(TELEPHONY_SERVICE)).getDeviceId();1.加入权限在manifest.xml文件中要添加 ……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2621浏览 146个赞
Android屏幕旋转和Configuration的使用演示转自:http://blog.csdn.net/lfdfhl/ MainActivity如下:package cn.testconfigurationchange; import android.os.Bund……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2939浏览 2963个赞
android ui的几个概念:px,dip(dp),sp,dpi,分辨率等转自:http://blog.csdn.net/lamp_zy/1.px (pixels)像素 – 是像素,就是屏幕上实际的像素点单位。 dip或dp (device ……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2305浏览 2318个赞
Android下图片的放大和缩小代码/** * * @author chrp * *图片 的放大 缩小 */public class TouchImageViewActivity extends Activity { /** Called when the activity is first created. */ ……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2699浏览 460个赞
Android下实现帧动画效果代码转自:http://blog.csdn.net/chrp99/ 新建一个framebyframe.xml文件<animation-list xmlns:android="http://schemas.android.com/ap……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2829浏览 396个赞
Android图形图像与动画开发之Paint和Canvas类 * Paint类 * Paint类代表画笔,用来描述图形的颜色和风格,如线宽,颜色,透明度和填充效果等信息。 * 使用Paint类时,需要先创建该类的对象,可以通过该类的构造函数实现。通常情况的实现代码是: * Paint paint=new Paint(); * 创建完Paint对象后,可以通……继续阅读 » 水墨上仙 4年前 (2021-03-31) 3137浏览 470个赞
Android开发中从SQLite数据库获取新插入数据自增长的ID值使用last_insert_rowid()函数转自:http://blog.csdn.net/ssun125/article/details/7628071 SQLiteDatabase db = helper.getWritableDatabase(); ……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2442浏览 2117个赞
android 设计带图片的文本框代码基本原理自定义一个IconTextView类继承自TextView,添加iconsrc属性,表示图片。重新onDraw方法,将图片绘制到textVIew前面,然后将textView右移。废话不多说了,直接代码就明白。转自:http://blog.csdn.net/hopezhangbo/article/details/7……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1192浏览 1487个赞
android的ScrollView控件默认是没有反弹效果的,当滑动到边缘的时候便不能继续滑动。这里通过自定义ScrollView来实现反弹效果。看下面的效果图,红色图片在最左边,android默认ScrollView控件红色图片在最左边的时候是不能向右滚动的。这里是水平滚动,我们可以通过自定义类继承自HorizontalScrollView类来实现。转自:……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2181浏览 725个赞
在玩一个GPS的东西 获取Location一直为null 后来是从onLocationChanged里面拿location才搞定了 贴一下吧 代码太乱http://blog.csdn.net/hopezhangbo/article/details/7384142/** * 主要是用户定位操作 *@author hope */ ……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1347浏览 2346个赞
Android开发的斗地主牌桌实现代码来源:http://blog.csdn.net/hopezhangbo/article/details/7434284 发一个Android斗地主游戏的牌桌实现。为了节约内存资源,每张扑克牌都是剪切形成的,当然这也是当前编程的主流方法。1、主A……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1480浏览 1024个赞
方法如下:在程序中加入//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) 1880浏览 1061个赞
Android系统键盘弹出时挡住文本框的解决方法 在manifest的activity节点使用 Xml代码android:windowSoftInputMode的使用。activity如何与软键盘交互。这个属性的设置将会影响两件事情:1> ……继续阅读 » 水墨上仙 4年前 (2021-03-31) 3121浏览 798个赞
Android开发中使用GridView实现数据网格显示转自:http://blog.csdn.net/ssun125/article/details/7627135 UsingGridView.java代码package com.sinaapp.ssun.girdview;im……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2419浏览 1578个赞
Android无标题栏、全屏注意在setContentView()之前调用,否则无效。//无标题栏 requestWindowFeature(Window.FEATURE_NO_TITLE); //全屏模式 getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, ……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1886浏览 1138个赞
Android查看数否有SD卡插入的代码String status=Environment.getExternalStorageState();if(status.equals(Enviroment.MEDIA_MOUNTED)){ //说明有SD卡插入}……继续阅读 » 水墨上仙 4年前 (2021-03-31) 3013浏览 528个赞
OnCreate 中不设Layout以下是 Theme_Transparent的定义(注意transparent_bg是一副透明的图片)this.setTheme(R.style.Theme_Transparent);……继续阅读 » 水墨上仙 4年前 (2021-03-31) 3219浏览 426个赞
使用Activity.findViewById来取得屏幕上的元素的句柄. 使用该句柄您可以设置或获取任何该对象外露的值.TextView msgTextView = (TextView)findViewById(R.id.msg); msgTextView.setText(R.string.push_me);……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1855浏览 2735个赞
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) 2005浏览 2546个赞
Android发送彩信的代码 StringBuilder sb = new StringBuilder(); sb.append(”file://”); sb.append(fd.getAbsoluteFile()); Intent intent = new Inten……继续阅读 » 水墨上仙 4年前 (2021-03-31) 3103浏览 1484个赞
Android发送mail的代码mime = “img/jpg”; shareIntent.setDataAndType(Uri.fromFile(fd), mime); shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(fd)); ……继续阅读 » 水墨上仙 4年前 (2021-03-31) 1777浏览 2980个赞
Android中注册一个 BroadcastReceiverregisterReceiver(mMasterResetReciever, new IntentFilter(”oms.action.MASTERRESET”));private BroadcastReceiver mMasterResetReciever = new BroadcastR……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2347浏览 1253个赞
Android定义ContentObserver,监听某个数据表private ContentObserver mDownloadsObserver = new DownloadsChangeObserver(Downloads.CONTENT_URI);private class DownloadsChangeObserver extends C……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2549浏览 1570个赞
Android获得手机UA的代码public String getUserAgent() { String user_agent = ProductProperties.get(ProductProperties.USER_AGENT_KEY, null); return user_agent; ……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2878浏览 1960个赞
Android清空手机上的cookie代码CookieSyncManager.createInstance(getApplicationContext()); CookieManager.getInstance().removeAllCookie();……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2362浏览 306个赞
Android建立gprs连接代码//Dial the GPRS link. private boolean openDataConnection() { // Set up data connection. DataConnection conn = DataConnection.getInstance(); ……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2707浏览 979个赞
Android开发PreferenceActivity 用法public class Setting extends PreferenceActivity{ public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2458浏览 658个赞
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) 1888浏览 204个赞
Android获得屏幕高度DisplayMetrics dm = new DisplayMetrics(); //获取窗口属性getWindowManager().getDefaultDisplay().getMetrics(dm); int screenWidth = dm.widthPixels;//320 int screen……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2350浏览 631个赞
自动检测移动设备浏览器并自适应宽度的CSSExtended css media queries for modern mobile screens/* Desktops and laptops ----------- */ @media only screen and (min-width : 1224px) { /* Styl……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2334浏览 2571个赞
Android获得SD卡剩余容量的代码File pathFile = Environment.getExternalStorageDirectory();StatFs statfs = new StatFs(pathFile.getPath());//获得可供程序使用的Block数量long nAvailaBlock = statfs.getAv……继续阅读 » 水墨上仙 4年前 (2021-03-31) 2339浏览 1858个赞
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) 2736浏览 256个赞
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) 1698浏览 2324个赞