注解式框架ButterKnife的用法及在adapter中使用的优化 Android

注解式框架的使用将会大大简化代码编写量,提升开发效率,主流的注解式框架有Dagger,ButterKnife,AndrodAnnotations。AndrodAnnotations配置麻烦,需要在项目清单
标签: android

发布于  2024-3-2 19:56

undefined reference to '__android_log_print'(android studio1.3版本) Android

修改 Andorid.mk没有用了,因为这个文件依靠build 。build.gradle产生的;所以修改:build.gradle里面的:ndk { moduleName "hello-jni" ldLibs "log&q
标签: android

发布于  2024-3-2 19:56

Honeycomb 中引入的新 Animation —— Property Animation Android

Honeycomb 中引入的新 Animation 译自:Animation in Honeycomb 这篇博客的作者是 Chet Haase,它是一位专注于图像和动画领域的 Android 工程师。他比较偶然的在他自己的 CodeDepe...
标签: android

发布于  2024-3-2 19:56

Unable to instantiate fragment make sure class name exists, is public, and has an empty constructor Android

据说这是自定义Fragment的Bug。自定义Fragment中的构造方法不能传参数,下面是出错的代码: public ListFragment(String url, int saleway, int page) { super(); this.mUrl
标签: android

发布于  2024-3-2 19:56

ListView一些常用的style设置 Android

去除ListView下拉的到顶部或底部的渲染色 listview_ticket_chil.setOverScrollMode(View.OVER_SCROLL_NEVER); 用于圆角背景或item <?xml version="1.0" encoding="utf-8"?> <shap
标签: android

发布于  2024-3-2 19:56

openwebrtc 服务端和android客户端demo安装 Android

本文的原文连接是: http://blog.csdn.net/freewebsys/article/details/46649667 转载请一定注明出处! 1,关于openwebrtc OpenWebRTC 是基于 Gstreamer 实现的开源的、跨平台
标签: android

发布于  2024-3-2 19:56

在ubuntu上搭建android开发环境(2)——通过windows启动器启动ubuntu Android

  在上一篇文章中,我们已经安装了ubuntu,并且选择通过windows启动器来启动ubuntu。安装完成之后,重启是看不到任何效果的,这个时候就需要增加一个启动项,这里我们用到一个工具:Easy BCD。官网下载需要注册,这里是一个不错...
标签: android

发布于  2024-3-2 19:55

Android 笔记之 application在AndroidManifest中得属性 Android

App android:icon="@drawable/icon" //app的图标 android:theme="@style/xxxTheme" //自己设置的主题 android:label="@string/app_name"//app的名字
标签: android

发布于  2024-3-2 19:55

Android解决屏幕适配问题 Android

一、Android屏幕适配概念 大小:实际大小以屏幕对角线的长度为准 例如:3.4 、 3.8英寸 屏幕密度:一块区域又多少个像素,一般用dpi来衡量,安卓中屏幕密度分为4种:low,medium,high,extra high 基本概念...
标签: android

发布于  2024-3-2 19:55

Android消息队列模型 Android

Google官方给Handler的解释如下:A Handler allows you to send and process Message and Runnable objects associated with a thread's MessageQueue. Each Handler instance is associated wit
标签: android

发布于  2024-3-2 19:55