- 博客(96)
- 收藏
- 关注
转载 android面试
转自:http://www.itlanbao.com/ns/news.aspx?s=600030ArrayListVectorLinkedList实现原理数组数组双向链表线程安全否是否优点...
2015-11-03 09:08:00 142
转载 Android Proguard
Android Proguard14 May 2015语法-include {filename} 从给定的文件中读取配置参数-basedirectory {directoryname} 指定基础目录为以后相对的档案名称-injars {class_path} 指定要处理的应用程序jar,war,ear和目录-outjars ...
2015-10-23 12:03:00 151
转载 Listview加载更多是,恢复到原来的位置,如果不加特殊处理,总是跳转第一条...
1、记录listView滚动到的位置的坐标,然后利用listView.scrollTo精确的进行恢复listView.setOnScrollListener(newOnScrollListener(){ /***滚动状态改变时调用*/@OverridepublicvoidonSc...
2015-10-21 16:29:00 345
转载 ScrollView自动滑到底部
// 自动滑动到底部 mScrollView.post(new Runnable() { @Override public void run() { mScrollView.fullScroll(ScrollView.FOCUS_DOWN);// 滚动到底部 //mScrollView.fullScroll(ScrollView.FOCUS_UP...
2015-07-03 07:56:00 122
转载 eclipse中的项目导出成Androidstudio的识别的项目,so文件打包不进去
需要加入jniLibs.srcDirs = ['libs']才可以把so文件打入包内sourceSets { main { manifest.srcFile 'AndroidManifest.xml' java.srcDirs = ['src'] resources.srcDirs = ['src'] aidl.srcDi...
2015-06-30 16:39:00 93
转载 Android为应用在桌面添加一个快捷方式
Intent addIntent=new Intent("com.android.launcher.action.INSTALL_SHORTCUT");Parcelable icon=Intent.ShortcutIconResource.fromContext(MainActivity.this,R.drawable.sms);Intent myIntent=new Int...
2015-06-11 09:24:00 150
转载 android画虚线的自定义VIew
package com.yesway.ycarplus.view;import android.annotation.SuppressLint;import android.content.Context;import android.graphics.Canvas;import android.graphics.Color;import android.gr...
2015-05-28 11:38:00 113
转载 Android按钮式进度条
1 package com.example.progress.demo; 2 3 import android.annotation.SuppressLint; 4 import android.content.Context; 5 import android.content.res.TypedArray; 6 import android.gr...
2015-05-28 10:07:00 503
转载 WebView js 调用Java本地方法
webView = (WebView) this.findViewById(R.id.webview); WebSettings webSettings = webView.getSettings(); webSettings.setJavaScriptEnabled(true); webView.addJavascriptI...
2015-05-18 16:37:00 149
转载 Fragmen横竖屏切换,导致页面混乱,oncreateView重复调用
在清单文件Activity设置属性android:screenOrientation="landscape"android:configChanges="screenSize|orientation"可以防止重复调用转载于:https://www.cnblogs.com/tianshidechibang234/p/4485545.html...
2015-05-07 16:29:00 221
转载 返回栈层层退出
if (getSupportFragmentManager().getBackStackEntryCount() > 0) { //从返回栈中弹出当前的任务 getSupportFragmentManager().popBackStackImmediate(); }转载于:https://www.cnblogs.com/tianshidechibang2...
2015-04-23 15:03:00 87
转载 自定义VIew——漂亮的圆形进度条
package com.example.firstapp;import java.text.DecimalFormat;import android.annotation.SuppressLint;import android.content.Context;import android.graphics.Canvas;import android.gra...
2015-04-15 14:24:00 93
转载 Android Studio SDK更新失败解决方法
1.设置host首先在windows/system32/drivers/etc/hosts中设置hosts,需要管理员权限。对hosts进行编辑: sudo vim hosts#Google主页 203.208.46.146 www.google.com##这行是为了方便打开Android开发官网 现在好像不翻也可以打开 74.125.1...
2015-04-12 16:47:00 201
转载 android判断应用是否有某个权限
1) 判断应用是否具有某个权限PackageManager pm = getPackageManager(); boolean permission = (PackageManager.PERMISSION_GRANTED == pm.checkPermission("android.permission.RECORD_A...
2014-12-24 21:45:00 250
转载 EditText输入长度动态控制,最大长度为16位,小数点后面最大为2位,输入整数只能为13位...
首先在xml 中把inputType设置为numberDecimal (包含小数点)然后在把maxLeng设置为16package com.example.numbertest;import android.app.Activity;import android.os.Bundle;import android.text.Editable;import a...
2014-11-15 12:28:00 363
转载 多线程下载
多线程下载:1.发送请求,获取下载文件的长度2.通过RandomAccessFile file=new RandomAccessFile(file,"rwd")对象,创建一个于要下载文件同样大小的文件3.定义一个线程的数据,计算每条线程的下载量,long block=filesize%threadsize==0?filesize/threadsize:filesize...
2014-08-02 13:55:00 77
转载 进程间通讯aidl
进程间通讯(aidl)1.首先定义一个接口2.把这个接口的文件扩展名改为xxx.aidl3.写一个MyService类继承自Service类重新里面的方法,4.在MyService类定义一个内部类继承自Stub类5.在onBind()方法把内部类的一个实例作为返回值同外部访问6.在MainActivity中通过bindService(intent,Servic...
2014-08-02 13:48:00 74
转载 Android的JNI开发
变量的定义 int i; typedef int x;//定义一个int x数据类型 x a=10; printf("size=%d",sizeof(i));//获取int类型长度(4个字节) system("pause");//不让窗体立即消失循环在c语言中,循环的变量必须在外面生命 int i for(i=0;i<10;i++){...
2014-08-02 13:30:00 83
转载 从相册中获取图片
Intent intent=new Intent();intent.setAction("android.intent.action.PICK");intent.setType("image/*");startActivityForResult(intent, 100);在activity中重写onactivityForResult()方法,在里面获取得到的数据转载于:ht...
2014-08-02 13:21:00 105
转载 Android中bitmap的相关处理
加载大图片 Options options=new Options(); options.inJustDecodeBounds=true;//不加载图片,只加载文件信息 //加载图片,获取到配置信息 BitmapFactory.decodeFile(Environment.getExternalStorageDirectory()+"/a.jpg",options);...
2014-08-02 13:20:00 97
转载 Android核心基础(手机卫士的一个知识点总结)
注意:有些功能是需要权限的,在这里并没有写出来,在程序运行中,根据程序报的错误,添加相应的权限即可,里面的具体里面可能有一些小细节,没有明确的写出来,具体的需要在程序中自己调试,解决。 这个总结涵盖了Android的一些核心的内容,如四大组建Service、ContentProvider、BroadCastReceiver、Activity,而且四大组建都必须在清单...
2014-07-02 16:14:00 422
转载 TabHost结合RadioButton实现主页的导航效果
1 布局文件的设置,如下 2 3 <?xml version="1.0" encoding="utf-8"?> 4 <TabHost xmlns:android="http://schemas.android.com/apk/res/android" 5 android:id="@+id/tabhosts" 6 a...
2014-05-26 21:01:00 101
转载 Android SDK更新失败最新解决方案
解决方案: 将https修改为http://在Android SDK manager中,的tools文件夹下,选择options...选项, 勾选 Force https//... sources to be fetched using http:// 之后点击close 然后再 c:\\windows\system32\drivers\etc\hosts添加如下内容...
2014-05-23 08:50:00 88
转载 正则表达式匹配手机号码 写一个正则表达式,可以匹配尾号5连的手机号。规则: 第1位是1,第二位可以是数字3458其中之一,后面4位任意数字,最后5位为任意相同的数字。...
1[3458]\d{4}(\d)\1{3}1 匹配 1[3458] 匹配 3 4 5 8 任意一个\d{4} 匹配 4个0-9(\d) 匹配 0-9并捕获到\1\1{4} 匹配 4个之前捕获到的\1public class Test9 { /** * 写一个正则表达式,可以匹配尾号5连的手机号。规则: 第1位是1,第二位可以是数字3458其中...
2014-01-02 19:16:00 1360
转载 JavaEE Servlet
http://www.cnblogs.com/hoojo/archive/2012/01/29/2331215.html转载于:https://www.cnblogs.com/tianshidechibang234/p/3488106.html
2013-12-23 20:05:00 58
转载 JavaScript 面向对象编程
<p></p><script type="text/javascript" language="javascript">// <![CDATA[function CustomerBooking(id,name) { this.id=id; this.name=name; } CustomerBooking....
2013-12-16 20:26:00 66
转载 Java正则表达式详解教程
public class Test { private static Scanner scanner; public static void main(String[] args) { scanner=new Scanner(System.in); checkMail(scanner.next()); } //邮箱验证 /* * ...
2013-12-11 17:39:00 76
转载 Android 侧滑(双向滑动菜单)效果
下面看看我们如何使用它,达到我们想要的效果public class MainActivity extends Activity { /** * 双向滑动菜单布局 */ private SliderMenu SliderMenu; /** * 在内容布局上显示的ListView */ ...
2013-12-09 12:54:00 83
转载 Android中PopupWindow中有输入框时无法弹出输入法的解决办法
PopupWindow window=new PopupWindow(view, LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT);//必须让popupwindow获得焦点时才能弹出输入法window.setFocusable(true);转载于:https://www.cnblogs.com/t...
2013-11-25 16:56:00 607
转载 Android 调用图库选择图片实现和参数详解
//选择图片,调用图库 bt4.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { Intent intent = new Intent(Intent.ACTION_GET...
2013-11-25 10:47:00 109
转载 Android加速度传感器实现“摇一摇”,带手机振动
Activity[java] view plaincopypackagecom.lmw.android.test;importandroid.app.Activity;importandroid.os.Bundle;importandroid.os.Handler;importandroid.os.Vibrator...
2013-11-25 10:40:00 220
转载 AsyncTask和Handler的优缺点比较
AsyncTask实现的原理和适用的优缺点AsyncTask,是android提供的轻量级的异步类,可以直接继承AsyncTask,在类中实现异步操作,并提供接口反馈当前异步执行的程度(可以通过接口实现UI进度更新),最后反馈执行的结果给UI主线程.使用的优点:简单,快捷过程可控 使用的缺点:在使用多个异步操作和并需要进行Ui变更时,就变得复杂起来....
2013-11-25 10:35:00 81
转载 Android ListView特别属性用法
由于这两天在做listView的东西,所以整理出来一些比较特别(不常用)的属性,通过设置这样的属性可以做出更加美观的列表1.stackFromBottom属性,这只该属性之后你做好的列表就会显示你列表的最下面,值为true和falseandroid:stackFromBottom="true" 2. transciptMode属性,需要用List...
2013-11-25 10:31:00 83
转载 Android 查看是否有存储卡插入
String status=Environment.getExternalStorageState();23if( status.equals ( Enviroment.MEDIA_MOUNTED ) )4{5说明有SD卡插入...
2013-11-25 10:24:00 130
转载 Android ListView嵌套Button,Button事件覆盖item事件解决办法
方法就是修改item布局的xml文件:在根布局里加上: android:descendantFocusability="blocksDescendants" 然后在按钮布局里加上: android:focusable="false"</strong> item和按钮都 可以点了,就OK了下面是布局示例: &...
2013-11-25 10:18:00 113
转载 android 再按一次退出程序(实现代码)
效果如图:实现代码:[java] view plaincopyprivatelongexitTime=0;/***捕捉返回事件按钮**因为此Activity继承TabActivity用onKeyDown无响应,所以改用dispatchKeyEvent...
2013-11-25 10:17:00 95
转载 Android 带checkbox的listView 实现多选,全选,反选
由于listview的一些特性,刚开始写这种需求的功能的时候都会碰到一些问题,重点就是存储每个checkbox的状态值,在这里分享出了完美解决方法:布局文件:[html] view plaincopy<?xmlversion="1.0"encoding="utf-8"?><RelativeL...
2013-11-25 10:14:00 140
转载 Android调用第三方应用
Intent intent=new Intent();//包名 包名+类名(全路径)intent.setClassName("com.qn.app.store", "com.qn.app.store.Main");startActivity(intent);转载于:https://www.cnblogs.com/tianshidechibang234/p/3...
2013-11-25 10:03:00 67
转载 Android输入法界面管理(打开/关闭/状态获取)
最近做一个带发表情的聊天界面,需要管理系统输入法的状态,一、打开输入法窗口:[java] view plaincopyInputMethodManagerinputMethodManager=(InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);//接受软...
2013-11-25 10:01:00 249
转载 ViewPager的使用方法和实现过程
布局文件里添加viewPager布局[html] view plaincopy<android.support.v4.view.ViewPagerandroid:id="@+id/search_viewpager"android:layout_width="wrap_content"android:layout...
2013-11-25 09:59:00 108
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人