
android
起个名这么难那就不起了
一个IT菜鸟的奋斗之路
展开
-
自学android过程中的一点笔记 -- 1
1、ArrayAdapter参数解析:this是context,中间参数是布局文件,data是数据。String[] data = {"归属地查询","。。。。","...."};创建 ArrayAdapter adapter = new ArrayList(this,android.R.layout.simple_list_item_1,data);"R.layout.simpl原创 2016-11-28 21:12:44 · 368 阅读 · 0 评论 -
死循环-内存溢出
11-20 04:50:28.385 4008-4008/com.example.administrator.lovego E/AndroidRuntime: FATAL EXCEPTION: main java.lang.OutOfMe原创 2016-11-20 18:15:35 · 1412 阅读 · 0 评论 -
android真机调试的问题
android studio 开发的android程序,使用虚拟机调试没问题,使用真机调试报错;Please select on your phone whether can install the app by The ADB command?refused to install the app by The ADB command !是因原创 2017-02-20 12:02:53 · 877 阅读 · 1 评论 -
获取版本号、版本名
android app升级的时候需要用的版本号以及版本名我在做这个的时候首先改了AndroidManifest.xml:如下但是 怎么改都不起作用;找了好久没发现问题,最后才发现原来是在build.gradle中有配置,如下修改了这个就可以了。我用的开发环境是android studio。原创 2017-02-21 14:14:08 · 242 阅读 · 0 评论 -
xUtils下载
1、创建Application2、红框内名必须写3、红框内泛型必须是file原创 2017-02-21 17:18:21 · 358 阅读 · 0 评论 -
app更新版本下载文件,然后安装
xxx.apk下载完之后,放到app私有空间中(非sd卡),安装提示“文件解析错误”,是因为在私有空间中文件只有读写权限没有执行权限。原创 2017-02-21 20:27:52 · 1015 阅读 · 0 评论 -
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'plansAndActi
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'plansAndActionController': Injection of autowired dependencies failed; nested exception is org.springframework.b原创 2017-03-15 11:00:49 · 410 阅读 · 0 评论 -
abdrioid 获取定位遇到的一点问题
1、使用List providers = locationManager.getProviders(true);获取到的provides为空解决:使用List providers = locationManager.getAllProviders();可以获取到2、权限问题://获取显示地理位置信息的TextViewpostionView = (TextView) findVi原创 2017-03-16 08:46:55 · 334 阅读 · 0 评论 -
Error:Failed to open zip file.
Error:Failed to open zip file.Gradle's dependency cache may be corrupt (this sometimes occurs after a network connection timeout.)Re-download dependencies and sync project (requires network)原创 2017-04-17 10:01:05 · 2897 阅读 · 0 评论