Android
ESC尛蜜蜂
我不生产代码,我只是代码的搬运工。
展开
-
Android 使用新线程计算质数
main.xml<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height=转载 2014-09-18 11:35:13 · 1840 阅读 · 0 评论 -
Android 使用Bundle在Activity间传递数据
main.xmlpackage com.example.bundletest;import java.io.Serializable;public class Person implements Serializable{ private String n, p, g; public Person(String name, String passwd, String gende原创 2014-09-18 14:22:31 · 721 阅读 · 0 评论 -
Android 利用handler传递数据
if (result != null) { Message msg = handler.obtainMessage(); msg.what = Constant.GETWEATHERMSG; msg.obj = result; handler.sendMessage(msg); } else { Message msg = ha原创 2014-09-17 13:36:11 · 10918 阅读 · 0 评论 -
Android 自动完成文本框
activity_main.xml<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_p转载 2014-10-27 14:24:53 · 618 阅读 · 0 评论 -
Android星级滑块
activity_main.xml<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_p转载 2014-10-27 14:50:00 · 638 阅读 · 0 评论 -
Android 根据IP地址获取城市
Android获取手机当前所在经纬度请参考:http://blog.csdn.net/a511341250/article/details/40509931原创 2014-11-19 14:26:00 · 4958 阅读 · 0 评论 -
Android Intent传递数据从一个Activity到另一个Activity
本文参考:http://www.cnblogs.com/tdalcn/p/3467445.htmlMainActivity.java核心代码Intent intent=new Intent(); intent.setClass(MainActivity.this, SecondActivity.class);//从一个activit转载 2014-11-26 08:43:53 · 3823 阅读 · 1 评论 -
Android 帧动画
res文件下创建anim文件在其中创建frame_ani.xml: <animation-list xmlns:android="http://schemas.android.com/apk/res/android" android:oneshot="false"> f1,f2,f3,f4是图片duration是显示时间1000代表1转载 2014-11-27 14:12:12 · 610 阅读 · 0 评论 -
Android SharedPreferences本地缓存
main.xml<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height=转载 2014-11-27 14:04:30 · 756 阅读 · 0 评论 -
Android 保持屏幕常亮
转自:http://www.cnblogs.com/xiaobo68688/archive/2011/08/12/2135824.html转载 2014-11-06 15:11:08 · 646 阅读 · 1 评论 -
Android 群发短信
manifest.xml中加权限转载 2014-11-24 13:11:16 · 949 阅读 · 0 评论 -
Android 发短信
manifest.转载 2014-11-24 10:29:38 · 640 阅读 · 0 评论 -
Android图片倒影
MainActivity.javaimport android.app.Activity;import android.graphics.Bitmap;import android.graphics.Canvas;import android.graphics.LinearGradient;import android.graphics.Matrix;import android.g转载 2015-01-30 13:07:32 · 526 阅读 · 0 评论 -
Android 闪关灯代码
打开闪光灯关键代码: Camera camera = Camera.open(); camera.startPreview(); parameter = camera.getParameters(); parameter.setFlashMode(Parameters.FLASH_MODE_TORCH); camera.setParameters(parameter)转载 2015-02-02 13:56:03 · 845 阅读 · 1 评论 -
Android 获取手机当前所在的经纬度
manifest中要加的permission:转载 2014-10-27 16:52:36 · 5125 阅读 · 3 评论 -
Android 获取网络图片
MainActivity.javapackage com.example.accessimage;import java.io.InputStream;import java.net.URL;import android.app.Activity;import android.graphics.Bitmap;import android.graphics.BitmapFactor转载 2015-01-26 11:50:00 · 673 阅读 · 0 评论 -
Android 获取手机的系统设置
main.xml<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height=转载 2014-09-18 09:08:27 · 737 阅读 · 0 评论 -
Android 处理简单单击事件的监听方法
main.xml定义了一个EditText和一个button按钮原创 2014-09-17 14:13:47 · 996 阅读 · 0 评论 -
Android 再按一次退出应用程序
public boolean onKeyDown(int keyCode, KeyEvent event) { if (keyCode == KeyEvent.KEYCODE_BACK) { exitcount++; if (exitcount >= 1 && exitcount < 2) { exitsec = Utils.getNowSec(); Utils.s转载 2014-09-17 15:09:23 · 512 阅读 · 0 评论 -
Android listview与adapter用法
一个ListView通常有两个职责。(1)将数据填充到布局。(2)处理用户的选择点击等操作。第一点很好理解,ListView就是实现这个功能的。第二点也不难做到,在后面的学习中读者会发现,这非常简单。一个ListView的创建需要3个元素。(1)ListView中的每一列的View。(2)填入View的数据或者图片等。(3)连接数据与List转载 2014-09-12 17:06:24 · 705 阅读 · 0 评论 -
android系统功能的调用
附带电话号码(调用系统短信):[java] view plaincopyIntent mIntent = new Intent(Intent.ACTION_VIEW); mIntent.putExtra("address",phoneNum); mIntent.put转载 2014-09-12 11:15:47 · 624 阅读 · 0 评论 -
Android 10秒跳转activity
在onCreate里设置个Timer,然后建立Intent指向你要调用Activity。设置Timer 10妙后执行startActivity就行了。 示例代码:final Intent it = new Intent(this, Activity1.class); //你要转向的Activity Timer timer = new Timer();转载 2014-09-12 13:01:37 · 934 阅读 · 0 评论 -
Android Broadcast发送和接受消息
发送广播Broadcast.javapackage com.example.broadcast;import android.os.Bundle;import android.app.Activity;import android.content.Intent;import android.view.View;import android.view.View.OnClickLi转载 2014-09-23 16:13:35 · 1141 阅读 · 0 评论 -
Android CalendarView用法
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent" >原创 2014-09-15 13:05:58 · 2437 阅读 · 0 评论 -
Android 选项卡(TabHost)功能实例:通话记录界面
<TabHost xmlns:android="http://schemas.android.com/apk/res/android" android:id="@android:id/tabhost" android:layout_width="match_parent" android:layout_height="match_parent" androi转载 2014-09-16 13:55:35 · 977 阅读 · 0 评论 -
Android OpenGL与3D应用开发之3D图形绘制
Polygon.javapackage cn.MyRenderer;import android.app.Activity;import android.opengl.GLSurfaceView;import android.os.Bundle;public class Polygon extends Activity{ public void onCreate(Bundle s转载 2014-09-24 15:23:55 · 3477 阅读 · 0 评论 -
Android 自定义view实例:跟踪手指小球
package com.example.test;import android.os.Bundle;import android.app.Activity;import android.view.Menu;public class DrawViewActivity extends Activity { @Override protected void onCre转载 2014-09-16 12:33:44 · 677 阅读 · 0 评论 -
Android 视频录制
RecordVideo.javapackage com.example.recordvide;import java.io.File;import com.example.recordvide.R;import android.media.MediaRecorder;import android.os.Bundle;import android.os.Environment;im转载 2014-09-26 08:33:05 · 1403 阅读 · 0 评论 -
Android 3D图形的手势旋转(未完成,求大神指点)
代码如下:package com.example.d;import java.nio.ByteBuffer;import java.nio.ByteOrder;import java.nio.FloatBuffer;import java.nio.IntBuffer;import javax.microedition.khronos.egl.EGLConfig;import j原创 2014-09-24 16:51:23 · 1492 阅读 · 0 评论 -
Android PopupWindow的简单使用示例
activity_popup_window_test.xml<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"转载 2014-09-16 15:37:24 · 712 阅读 · 0 评论 -
Android ProgressDialog创建三种简单的进度对话框
main.xml<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height=转载 2014-09-16 16:23:30 · 688 阅读 · 0 评论 -
ActionBar结合Fragment实现Tab导航、下拉式导航
ActinBar_TabNav.javapackage com.example.actionbar;import android.os.Build;import android.os.Bundle;import android.annotation.SuppressLint;import android.annotation.TargetApi;import android.app转载 2014-09-17 11:28:21 · 1215 阅读 · 0 评论 -
Android 打开软键盘
本文转载自:http://www.cnblogs.com/ligang305/archive/2012/08/02/2619870.html转载 2014-09-17 15:21:07 · 691 阅读 · 0 评论 -
Android 按back返回按钮返回哪个activity的问题
当有2个或2个以上activity能跳转到同一个activity时,原创 2014-09-17 16:17:29 · 1174 阅读 · 0 评论 -
Android WebView的用法示例代码
android:name="android.permission.INTERNET" />转载 2014-10-28 13:09:32 · 1749 阅读 · 0 评论