Android
ColorPaper
游侠
展开
-
MT8382
MT8382是MT6582的平板芯片, 内核是一样的. 目前此款芯片在MTK定义为入门级4核芯片. 平台的价格可以控制在600RMB左右, 目前比较火的荣耀3c就是使用MT6582. 当然好的价格可以在1500RMB. MT6582的性能是不可以和苹果A7芯片比的, 市场地位完全不一样.联发科MT6582是基于28纳米的四核心ARM Cortex A7架构,主频为1.3Ghz,可以视作MT转载 2016-01-27 16:21:26 · 2374 阅读 · 0 评论 -
设置活动的方向
偶尔地,你可能想要确保你的应用程序在某一个确定的方向上面显示,横屏模式或竖屏模式。例如,你可能会开发一款只在横屏模式下面运行的游戏。在这种情况下,可以通过编写代码,强制把Activity的方向设置为横向,这需要使用Activity类的setRequestOrientation()方法。双击代码全选1234567转载 2013-05-27 11:42:38 · 741 阅读 · 0 评论 -
android activity是什么呢
上面几位同学说得不对,你不能把它看成是页面,因为如果你不指定页面,它就没有页面。 其实你最好是拿金山词霸翻译一下就得到答案,对, Activity 是指 一次活动的意思, 活动在这里是一场演播剧。 一出演出活动。 而演出可以是有画面的舞台,也可以是没有画面的单口相声通过声音演出给你。如果需要有页面,那很简单你的oncreate方法里面必须要有一句代码:this.setContentView(转载 2013-05-27 09:44:36 · 1428 阅读 · 0 评论 -
Android中的资源与国际化!
今天给大家分享一下Android中的资源与国际化的问题,通常我们新建一个Android工程,目录结构如下图所示: 我们主要看一下layout与values目录,layout里的xml文件的我们应用使用布局的文件,values里的sring.xml是用来存放文字资源,一个key对应一个value值。 但是在实际应用开发中,通常横屏(land)与竖屏(port)可能布局文件有所不同转载 2013-05-27 13:58:50 · 821 阅读 · 0 评论 -
Android根据Button状态(normal,focused,pressed)显示不同背景图片
Android根据Button状态(normal,focused,pressed)显示不同背景图片Android中Button 有focused, selected, pressed 等不同状态,通过配置一个XML格式的 drawable "selector" 即可实现”在不同状态下显示不同背景图片“的功能。1. 在res/drawable目录下添加一个xml文件,用来描述Butt转载 2013-05-27 16:48:21 · 1108 阅读 · 0 评论 -
关于Android的nodpi,xhdpi,hdpi,mdpi,ldpi
首先是几个基本概念:1.屏幕尺寸Screen size即显示屏幕的实际大小,按照屏幕的对角线进行测量。为简单起见,Android把所有的屏幕大小分为四种尺寸:小,普通,大,超大(分别对应:small, normal, large, and extra large).应用程序可以为这四种尺寸分别提供不同的自定义屏幕布局-平台将根据屏幕实际尺寸选择对应布局进行渲染,这种选择对于程序侧是转载 2013-05-27 14:58:20 · 609 阅读 · 0 评论 -
编译android版本的opencv 2.4.2
想编译android版本的opencv 2.4.2,首先想到的是按照官方教材去做:http://code.opencv.org/projects/opencv/wiki/Building_OpenCV4Android_from_trunk在mac os x lion下,按照这个教材,笔者进行了以下操作1、下载opencv 2.4.2源码包http:/转载 2012-08-22 15:56:03 · 4994 阅读 · 0 评论 -
Android Developer Registration
Developer RegistrationYou must register to be able to distribute your products through Google Play. There is a one time $25 registration fee. We charge this fee to encourage higher quality pro转载 2012-05-06 22:14:58 · 674 阅读 · 0 评论 -
如何展现Activity Indicator
问:How can i show an Activity Indicator in Android? Is there any Android Library given method? If no, please let me know the techniques used to show activity indicator in Android?.回答1:转载 2012-05-05 13:06:32 · 1066 阅读 · 0 评论 -
Android Camera编程
Multimedia and Camera: CameraIn this documentConsiderationsThe BasicsManifest DeclarationsUsing Existing Camera AppsImage capture intentVideo capture intentReceiving camera int转载 2012-05-05 09:11:36 · 980 阅读 · 0 评论 -
Capture Image from Camera and Display in Activity
问:I want to write a module where on a click of a button the camera opens and I can click and capture an image. If I don't like the image I can delete it and click one more image and then select the转载 2012-05-04 11:23:18 · 596 阅读 · 0 评论 -
android 将图片内容解析成字节数组,将字节数组转换为ImageView可调用的Bitmap对象,图片缩放,把字节数组保存为一个文件,把Bitmap转Byte
源自:http://blog.csdn.net/z104207/article/details/6634774package com.bingo.util; import java.io.BufferedOutputStream; import java.io.ByteArrayOutputStream;import java.io.File; import java转载 2012-05-03 22:20:43 · 890 阅读 · 0 评论 -
Java中的值传递和引用传递
在java中实质只存在一种传递方式:即值传递。 而引用传递是对C/C++而言的。结论: 对于基本类型,在方法体内对方法参数进行重新赋值,并不会改变原有变量的值。 对于引用类型,在方法体内对方法参数进行重新赋予引用,并不会改变原有变量所持有的引用。 方法体内对参数进行运算,不影响原有变量的值。 方法体内对参数所指向对象的属性进行运算,将改变原有变量所指向对象的属性值。转载 2012-04-17 17:55:55 · 450 阅读 · 0 评论 -
Uploading audio, video or image files from Android to server
源自:http://www.coderzheaven.com/2012/03/29/uploading-audio-video-or-image-files-from-android-to-server/Hello everyone,In one of the previous posts I have shown one method to upload an image in andr转载 2012-04-16 16:18:36 · 1036 阅读 · 0 评论 -
Using MultipartEntity in Android applications
To be able to upload files from an Android application and use the Multipart content type you need to add some additional jar files to your application.The files needed are apache-mime4j, httpclie转载 2012-04-16 15:45:18 · 670 阅读 · 0 评论 -
How to Upload Multiple files in one request along with other string parameters in android?
Hello everyone,I have shown two methods to upload files in android.In today’s tutorial I will show another simple method to upload files. With this method you can upload multiple files in one requ转载 2012-04-16 16:26:26 · 1272 阅读 · 0 评论 -
Android: Upload image or file using http POST multi-part
Hi,After spending whole day, I thought that I should post my experience.I’m trying to upload image to my server using Android 1.5 SDK.By using this method, you will be able to upload a fi转载 2012-04-16 16:00:24 · 3038 阅读 · 0 评论 -
Android:How to upload .mp3 file and image to http server?
问:My code for uploading image to Server is :String userIdParameter = String.valueOf(userId); String fileName = "temporary_holder.jpg"; HttpURLConnection conn = null; DataOutput转载 2012-04-16 16:17:34 · 1602 阅读 · 0 评论 -
JAVA和C++区别
1.指针 JAVA语言让编程者无法找到指针来直接访问内存无指针,并且增添了自动的内存管理功能,从而有效地防止了c/c++语言中指针操作失误,如野指针所造成的系统崩溃。但也不是说JAVA没有指针,虚拟机内部还是使用了指针,只是外人不得使用而已。这有利于Java程序的安全。 2.多重继承 c++支持多重继承,这是c++的一个特征,它允许多父类派生一个类。尽管多重继承功能很强,但使用复杂,而转载 2013-05-28 11:00:38 · 682 阅读 · 0 评论 -
C++与JAVA的对比
C++与JAVA的对比一、C++的发展史语言的发展是一个逐步递进的过程,C++是直接从C语言发展过来的,而C语言是从B语言发展过来的,B语言是BCPL的一个解释性后代,BCPL是BasicCPL。其中最有趣的是CPL中C的由来,由于当时这个语言是剑桥大学和伦敦大学合作开发的,在伦敦的人员加入之前,C表示剑桥,伦敦人员加入之后,C表示Combined组合。还有一种非正式的说法,C表示Chri转载 2013-05-28 11:06:47 · 1356 阅读 · 0 评论 -
长时间停留在calculating requirements and dependencies 的解决方案
如果Eclipse花费了很长的时间calculating requirements and dependencies(计算需求和依赖性 )这个问题通常就是在点击安装之后显示“Calculating requirements and dependencies”,然后进度条不动,调出系统监视器会发现压根儿没下载流量,解决方法: 1、把“Contact all update转载 2013-05-28 11:54:49 · 911 阅读 · 0 评论 -
startService与bindService
Service的生命周期 Service的生命周期方法比Activity少一些,只有onCreate, onStart, onDestroy 我们有两种方式启动一个Service,他们对Service生命周期的影响是不一样的。1 通过startService Service会经历 onCreate -> onStart stopService的时候直接onDest转载 2016-01-27 10:06:30 · 631 阅读 · 0 评论 -
Test
Anroid开发总结一 Koupoo 2011-12-18几条基本的准则设计的UI应尽量适应各种的显示屏分辨率;不要在非主线程中操作UI。在非特殊情况下,应该避免使用px作为尺寸单位,而使用dip或sp 尺寸单位使用Android为系统的机器的屏幕大小尺寸有很多种,常见的有原创 2013-11-28 20:30:58 · 975 阅读 · 0 评论 -
android中的dp,px深度解析
dip: device independent pixels(设备独立像素)。不同设备有不同的显示效果,这个和设备硬件有关,一般我们为了支持WVGA、HVGA和QVGA 推荐使用这个,不依赖像素。 与密度无关的像素,这是一个基于屏幕物理密度的抽象单位。密度可以理解为每英寸包含的像素个数(单位是dpi),1dp实际上相当于密度为160dpi的屏上的一个点(可否理解为物理尺寸?)。也就是说,如转载 2013-06-19 12:56:10 · 910 阅读 · 0 评论 -
android的文件操作。(未整理完成)
代码:https://code.google.com/p/otherdown/android的文件操作要有权限:[xhtml] view plaincopyuses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE">uses-permis转载 2013-06-07 14:30:08 · 897 阅读 · 0 评论 -
android中对/data/data/<package name>/files下文件的读写操作
文前声明:转载时注明文章出处。http://blog.csdn.net/dinglin_87/article/details/7433541 本文重点展示,对/data/data//files中文件的读写操作的实现。 一、写出数据到files文件夹中,Activity提供了openFileOutput()方法,可以把数据输出到/data/转载 2013-06-07 14:19:24 · 1084 阅读 · 0 评论 -
eclipse常用快捷键
快捷键命令作用 快捷键序列保存 Ctrl+S刷新 F5关闭 Ctrl+W属性 Alt+EnterFormat Ctrl+Shift+F删除行 Ctrl+D在当前行上面插入行 Ctrl+Shift+Enter在当前行下面插入行 Shift+Enter更改为大写 Ctrl+Shift+X更改为小写 Ctrl+Shift+Y选择行末 Shift+End将活转载 2013-06-07 17:15:58 · 696 阅读 · 0 评论 -
Android 数据持久化
在Android中,实现数据持久化主要有四种方式:Preferences,文件I/O,SQLite数据库,ContentProvider组件。在我们RUI中上述的几种方法都要涉及,其中LauncherProvider.java文件属于第四种,提供对数据库的一些操作,下面将重点介绍使用ContentProvider来实现数据持久化,其它方法将做简要介绍。1) 使用Preference转载 2013-06-05 18:10:04 · 819 阅读 · 0 评论 -
android软件 根目录 data/data
data/data是系统在维护的,一般应用程序无有权限往里面写东西或者改东西。data/data目录里面的内容,是系统自动写入的。比如你开发了一个应用,在应用中你获取了一个配置getSharedPreferce,然后你提交了一些数据,这写数据,就会由系统生成xml文件,放在data/data/你的应用包名/.... 下面,数据库也是一样。转载 2013-06-05 16:58:36 · 1619 阅读 · 0 评论 -
Android中asset文件夹和raw文件夹区别
*res/raw和assets的相同点:1.两者目录下的文件在打包后会原封不动的保存在apk包中,不会被编译成二进制。*res/raw和assets的不同点:1.res/raw中的文件会被映射到R.java文件中,访问的时候直接使用资源ID即R.id.filename;assets文件夹下的文件不会被映射到R.java中,访问的时候需要AssetManager类。2.r转载 2013-06-05 16:53:21 · 798 阅读 · 0 评论 -
让Eclipse的自动提示功能更强大
让Eclipse的自动提示功能更强大:Windows -Preferences-Java-Editor-Content Assistant,修改 Auto activiation triggers for Java 为”.abcdefghijklmnopqrstuvwxyz(,”,这句话的意思就是只要遇到这么些字符就提示。转载 2013-06-04 17:56:56 · 869 阅读 · 0 评论 -
出现java.lang.IllegalArgumentException: No configs match configSpec
模拟器不支持OpenGL ES 2.0是因为android模拟器不支持OpenGL ES 2.0,解决办法:创建模拟器时:GPU emulation选yes,需要android 4.0以上的版本才行。使用真机没有这个问题。转载 2013-06-03 16:56:38 · 3462 阅读 · 1 评论 -
Android OpenGL “No config chosen”
问:I'm having a real problem with the Google's OpenGL demo for Android. I set it up in Eclipse but can't get it to execute. It builds with no problems, but then stops at "java.lang.IllegalArgum转载 2013-06-03 16:55:58 · 1548 阅读 · 0 评论 -
Android在OnCreate中获取控件的宽度和高度
在Android中,有时需要对控件进行测量,得到的控件宽度和高度可以用来做一些计算。在需要自适应屏幕的情况下,这种计算就显得特别重要。另一方便,由于需求的原因,希望一进入界面后,就能得到控件的宽度和高度。可惜的是,根据我的验证,利用网上转载的那些方法在OnCreate函数中获取到的仍然是0(希望搞技术的能自己验证过再转载),例如Measure方法之后调用getMeasuredWidth的值转载 2013-05-31 16:41:07 · 770 阅读 · 0 评论 -
Android 控件在布局中按比例放置 (
在Android开发中常用到线性布局LinearLayout对界面进行具体的创建,其中android:layout_weight这个属性很重要,它可以按照程序员的控制,根据终端屏幕的大小,以相应的比例显示控件的大小,而不会把控件的大小写死,造成无法根据屏幕来自动调整控件本身的大小。需要注意以下几点:一、LinearLayout内的控件的layout_width设置为"w转载 2013-05-31 10:32:13 · 1419 阅读 · 0 评论 -
Fragments For All
A few weeks ago, Dianne Hackborn wrote about the new Fragments API, a mechanism that makes it easier for applications to scale across a variety of screen sizes.However, as Dianne noted, this new转载 2013-05-30 09:48:20 · 770 阅读 · 0 评论 -
管理Fragments
FragmentManager 为了管理Activity中的fragments,需要使用FragmentManager. 为了得到它,需要调用Activity中的getFragmentManager()方法。 因为FragmentManager的API是在Android 3.0,也即API level 11开始引入的,所以对于之前的版本,需要使用support lib转载 2013-05-30 09:42:42 · 693 阅读 · 0 评论 -
Eclipse 安装 ADT Plugin 离线安装包
我用的是Eclipse4.2汉化版本哦,怎么汉化请看Eclipse 和 中文语言包下载!怎么下载 ADT Plugin 离线安装包请看Android SDK 离线包下载。打开“帮助”菜单下面的“安装新软件”,弹出如图:在点击“添加”按钮,弹出如图对话框,并点击“Archive..” 选中离线安装包。 然后在 “名称”中输入 ADT Plugin ,确定后转载 2013-05-28 17:30:57 · 1171 阅读 · 0 评论 -
Post multipart request with Android SDK
Based on this blog I came up with the following solution:http://blog.tacticalnuclearstrike.com/2010/01/using-multipartentity-in-android-applications/You will have to download additional libraries转载 2012-04-16 15:49:49 · 588 阅读 · 0 评论 -
android 拍照上传照片
源自:http://blog.csdn.net/yaoyeyzq/article/details/7254679 废话不多说,直接进入主题,想要在android中实现拍照最简单饿方法就是New 一个 Intent 设置Action为android.media.action.IMAGE_CAPTURE 然后使用startActivityForResult(intent,REQUE转载 2012-04-16 13:24:59 · 903 阅读 · 0 评论