`
ming_fanglin
  • 浏览: 224561 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论
文章列表
Android是Google基于Linux开发的智能手机操作系统,广泛应用于3G手机、上网本等。目前处于爆发式增长阶段,HTC(宏达电 多普达)、摩托罗拉、索爱、三星等众多公司纷纷推出基于Android智能操作系统,甚至很多上网本也使用Android操作系统。目前Android是最热门的智能操作系统,凭借Linux的软件优势其应用的广泛程度已经让其他对手相形见绌。所以学习Android操作系统具有巨大的意义。 这次平台使用omap3530-Devkit8000套件开发板来进行对android深入研究和学习。 ◆ Android操作系统概述    1. Android系统架构    2. ...
import android.app.Activity; import android.content.Context; import android.location.Criteria; import android.location.Location; import android.location.LocationListener; import android.location.LocationManager; import android.os.Bundle; import android.widget.TextView; ...
static public void decodeYUV420SP(int[] rgb, byte[] yuv420sp, int width, int height) { final int frameSize = width * height; for (int j = 0, yp = 0; j < height; j++) { int uvp = frameSize + (j >> 1) * width, u = 0, v = 0; for (int i = 0; i < width; i ...
1.目录树 /framework/base/api /framework/base/awt /framework/base/build /framework/base/camera 关于camera的HAL接口库。最终生成native共享库libcamera.so ,编译时根据是否定义USE_CAMERA_STUB来决定系统是否有Camera硬件支持。若没有实际的Camera硬件,则编译时会和虚拟 camera静态库(libcamerastub.a,由camerahardwarestub.cpp,fakecamera生成)链接生成 libcamera.so。 /framework/ ...
  第一步:准备包   http://code.google.com/p/zxing/ 下载   编译zxing   下载ant 地址http://ant.apache.org/   下载proguard 地址http://proguard.sourceforge.net/index.html#/downloads.html   解压:zxing-1.6   目录结构下:   zxing-1.6   -android   android-integration   core   build.properties   build.xml   ........   第二步 ...
所谓谚语,就是用言简意赅、通俗易懂的方式传达人生箴言和普遍真理的话,它们能很好地帮助你处理生活和工作上的事情。也正因如此,我才整理了10句编程谚语,每位开发人员都应该铭记他们,武装自己。 1. 无风不起浪 别 ...
String ADD_SHORTCUT_ACTION 动作:在系统中添加一个快捷方式。. "android.intent.action.ADD_SHORTCUT" String ALL_APPS_ACTION 动作:列举所有可用的应用。 输入:无。 "android.intent.action.ALL_APPS" String ALTERNATIVE_CATEGORY 类别:说明 activity 是用户正在浏览的数据的一个可选操作。 "android.intent.category.ALTERNATIVE" String ANSWER ...
1,继承自TabActivity类 2,getTabHost()获取TabHost实例 3, LayoutInflater.from(this).inflate(界面布局Id, tabHost.getTabContentView(), true); 4,添加选项卡     tabHost.addTab(         tabHost.newTabSpec(选项卡Tag)   //返回TabSpec实例 .setIndicator(选项卡显示标题) //或.setIndicator(CharSequence label, Drawable icon) .setContent(选项卡绑定 ...
package lab.sodino.net; import java.net.InetAddress; import android.app.Activity; import android.content.Context; import android.net.ConnectivityManager; import android.net.NetworkInfo; import android.net.wifi.WifiInfo; import android.net.wifi.WifiManager; import and ...
Android 基站定位 例子 http://www.eoeandroid.com/viewthread.php?tid=7881 Android权限列表permission说明 http://www.eoeandroid.com/viewthread.php?tid=1084&highlight=network%2B%E5%AE%9A%E4%BD%8D
平台基础知识 一、概述       07年,Google公司推出了基于Java语言的Android平台,引起了IT业界的一致关注,同年,播思通讯公司开始研发基于其的OPhone平台。       08年,第一款Android手机G1面世,这款Google为HTC量身打造的滑 ...
<?xml version="1.0" encoding="utf-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android"> <scale android:interpolator="@android:anim/accelerate_decelerate_interpolator" android:fromXScale=" ...
import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import org.apache.http.HttpEntity; import org.apache.http.HttpResponse; import org.apache.http.client.ClientProtocolException; import org.apache.http.client.HttpCli ...
1,返回图片名称列表 context.getResources().getAssets().list("image") 2,确认图片名字,拿到bitmap InputStream inputStream = context.getResources() .getAssets().open("image/" + url); bitmap = BitmapFactory.decodeStream(inputStream); 3,判断是否已存在文件 context.getFileStreamPath(file).isFil ...
锁定 Activity 运行时的屏幕方向 <activity android:name=".EX01" android:label="@string/app_name" android:screenOrientation="portrait" // 竖屏 , 值为 landscape 时为横屏 ………… </activity> 全屏的 Activity // 设置全屏模式 getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCR ...
Global site tag (gtag.js) - Google Analytics