Android
JTZP007
这个作者很懒,什么都没留下…
展开
-
Android中的长度单位详解(dp、sp、px、in、pt、mm)
Android中的长度单位详解(dp、sp、px、in、pt、mm) 看到有很多网友不太理解dp、sp和px的区别:现在这里介绍一下dp和sp。dp也就是dip。这个和sp基本类似。如果设置表示长度、高度等属性时可以使用dp 或sp。但如果设置字体,需要使用sp。dp是与密度无关,sp除了与密度无关外,还与scale无关。如果屏幕密度为160,这时dp和sp和px是一样的。1转载 2014-12-09 14:54:55 · 468 阅读 · 0 评论 -
findViewById返回Null
findViewById返回Null10-04 17:43:05.400: E/AndroidRuntime(7135): Caused by: java.lang.NullPointerException10-04 17:43:05.400: E/AndroidRuntime(7135): at com.solar.LoginActivity.initView(Login转载 2014-12-12 11:02:52 · 621 阅读 · 0 评论 -
android命名规范
http://blog.csdn.net/vipzjyno1/article/details/23542617转载 2014-12-25 15:11:31 · 332 阅读 · 0 评论 -
android 真机调试步骤
http://www.cnblogs.com/lanxuezaipiao/archive/2013/03/11/2953564.html转载 2015-06-30 09:57:02 · 468 阅读 · 0 评论 -
Android工程目录结构介绍
http://blog.csdn.net/android_tutor/article/details/4769550转载 2015-07-10 14:07:31 · 300 阅读 · 0 评论 -
ActionBar 控件实现Tab页
public class MainActivity extends Activity {@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);setTabl原创 2016-03-02 11:12:51 · 389 阅读 · 0 评论 -
android jni里面找不到某个函数的定义
错误提示:error: undefined reference to 'WriteBattery' (WriteBattery:是我自定义的一个函数 )collect2: ld returned 1 exit status原因: Android.mk 文件中的LOCAL_SRC_FILES 变量里面没有添加WriteBattery函数所在的C文件名称。解决方案:原创 2016-03-11 10:05:51 · 1399 阅读 · 1 评论 -
android layout 添加 EditText控件之后整个界面变成了不可编辑的灰色
提示错误: Failed to find style 'switchStyle' in current theme解决办法: 将API版本号由 “API20” 改成 “API19”原创 2016-05-04 10:57:29 · 1956 阅读 · 0 评论 -
xamarin遇到的问题
1.提示:找不到设备原因:没有安装手机usb驱动。2.Could not create the Android package. See the Output (Build) window for more details.adroid 安装的 sdk\tools 目录下没有zipalign.exe3.Deployment failed because th原创 2016-05-12 08:51:26 · 1942 阅读 · 0 评论 -
Android framework系统默认设置修改
Launcher 总结: 1、launcher的布局太居中,要想两边拉伸 apps_customize_pageLayoutPaddingLeft">40dp apps_customize_pageLayoutPaddingRight">40dpapps tab栏的宽度( Launcher2 icon 数目、大小)\package转载 2016-08-01 11:39:16 · 1732 阅读 · 0 评论 -
获取唯一id
android.os.Build.SERIAL; //4字节设备序列号原创 2016-10-08 17:24:15 · 598 阅读 · 0 评论 -
深入理解JNI
http://download.csdn.net/download/gaojiaxing/6515851转载 2017-02-21 10:55:14 · 451 阅读 · 0 评论 -
android-service
1. 创建一个service:public class MyService extends Service {}2.在清单中申明serviceapplication> service android:name=".MyService" android:enabled="true" android:exported="原创 2017-03-03 22:30:30 · 290 阅读 · 0 评论 -
android-service2
1. 创建一个service:public class MyService extends Service {//实现onBindpublic IBinder onBind(Intent intent) { // TODO: Return the communication channel to the service. return binder;// th原创 2017-03-04 10:26:06 · 375 阅读 · 0 评论 -
Intent
http://www.cnblogs.com/engine1984/p/4146621.html转载 2017-03-06 17:33:31 · 254 阅读 · 0 评论 -
android-service3
通过 Messenger实现service,可以实现两个进程直接通信。一.创建 Servicepublic class MyService_message extends Service{public static final int MSGID=1;/** * 用于接收从客户端传递过来的数据 */private class ServiceMessage extends Ha原创 2017-03-06 21:24:41 · 304 阅读 · 0 评论 -
android-onDraw画图
public class BrashView extends View { String TAG="BrashView"; Path path=new Path(); Paint brush=new Paint(); Button btnRresh; ViewGroup.LayoutParams layoutParams; public BrashV原创 2017-03-07 22:47:36 · 1223 阅读 · 0 评论 -
drawable属性
定义要在某些状态期间使用的可绘制对象,如其属性所述。必须是 元素的子项。属性:android:drawable可绘制对象资源。必备。引用可绘制对象资源。android:state_pressed布尔值。如果在按下对象(例如触摸/点按某按钮)时应使用此项目,则值为“true”;如果在默认的未按下状态时应使用此项目,则值为“false”。android:state_focused布尔原创 2017-03-09 20:02:42 · 640 阅读 · 0 评论 -
DrawerLayout左边导航
xml文件<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.原创 2017-03-10 09:15:08 · 305 阅读 · 0 评论 -
重要地址
http://mirrors.neusoft.edu.cn/android/repository/ android开发包下载原创 2017-03-12 00:00:39 · 497 阅读 · 0 评论 -
android app还原出厂设置
设置 为系统app android:sharedUserId="android.uid.system" sendBroadcast(new Intent("android.intent.action.MASTER_CLEAR"));注意:应用一定要设置成系统app不然不会有效果原创 2017-03-31 14:25:59 · 1000 阅读 · 0 评论 -
文件存储
文件存储:this.getFilesDir(); // /data/data/包名/filesthis.getCacheDir(); // /data/data/包名/cacheopenFileOutput("aa.txt", 0); /data/data/包名/files/aa.txtSharedPreferences存储路径: /data/data/包名/shared_原创 2017-04-13 21:41:25 · 314 阅读 · 0 评论 -
android 特殊符号显示
单引号 ' ' " " > > & &转载 2017-12-01 17:39:00 · 5254 阅读 · 0 评论 -
命令生成key文件
https://jingyan.baidu.com/article/7e4409533cb10e2fc0e2efa3.html转载 2018-01-09 19:58:11 · 3005 阅读 · 0 评论 -
android 6.0遇到的问题
1.打开app访问gpio 异常 : type=1400 audit(1956.899:283): avc: denied { write } for pid=6914 comm=4173796E635461736B202331 name="gpio" dev="tmpfs" ino=6842 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:o...原创 2018-03-05 11:24:19 · 375 阅读 · 0 评论 -
NDK开发--环境搭建
转载: http://blog.csdn.net/zeqiao/article/details/77893167JNI:Java Native Interface(Java 本地编程接口),一套编程规范,它提供了若干的 API 实现了 Java 和其他语言的通信(主要是 C/C++)。Java 可以通过 JNI 调用本地的 C/C++ 代码,本地的 C/C++ 代码也可以调用 java 代码。Ja...转载 2018-03-08 14:43:36 · 389 阅读 · 0 评论 -
Android 混淆编译1
http://www.360doc.com/content/16/0930/09/26794451_594811550.shtmlAndroid混淆那些事,看这篇就够了简介作为Android开发者,如果你不想开源你的应用,那么在应用发布前,就需要对代码进行混淆处理,从而让我们代码即使被反编译,也难以阅读。混淆概念虽然容易,但很多初学者也只是网上搜一些成型的混淆规则粘贴进自己项目,并没有对混淆有个深...转载 2018-03-13 20:04:14 · 231 阅读 · 0 评论 -
Jni学习2--基础数据类型
第一部分: 基础数据类型对比Java数据类型C语言数据类型C对应javaJin数据类型Jni对应Cint 4byte 32位int 4byte 32位一致 Jin 32位Int 32位short 2byte 16位short 2byte 16位一致 Jshort 16位Short 16位char 2byte 16位char 1byte 8位 short Jchar 16位unsigned sho...原创 2018-03-22 15:58:38 · 339 阅读 · 0 评论 -
Android Studio导入整个Android系统源码
本文章转自https://blog.csdn.net/QQxiaoqiang1573/article/details/72903237】https://www.jianshu.com/p/abd8d7a074fd简介偶然发现一个神器idegen,通过它我们可以用Android Studio阅读整个系统源码,非常方便。话不多说直接来看怎么使用idegen,导入系统源码到Android S...转载 2018-09-03 15:15:53 · 383 阅读 · 0 评论 -
Android 存储路径相关知识小结
https://blog.csdn.net/liujigangisgood/article/details/40044709转载 2018-10-11 11:07:38 · 160 阅读 · 0 评论 -
class的jar 和 dex的jar互相转换
jar文件转dex:1. cmd进入到android sdk build-tools目录下面随便找个文件比如:19.1.0,将要转换的old.jar拷贝到当前目录下,2. 执行命令:dx --dex --output=new.jar old.jarold.jar是class文件的jar包 ,new.jar是dx工具产生的dex二进制jar包!dex转jar:1.下载转换工...原创 2018-12-20 19:41:35 · 4429 阅读 · 1 评论 -
Androidx和Android support库共存问题解决
https://www.jianshu.com/p/f7a7a8765294转载 2019-05-25 16:51:42 · 1659 阅读 · 0 评论