自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(12)
  • 收藏
  • 关注

原创 高效模糊化FastBlur

高效模糊化FastBlur

2015-05-07 17:32:52 460

原创 可上下拖动排序listview

源码在附件中。

2015-05-06 19:54:29 301

原创 Spinner 下拉列表 demo

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_

2015-04-15 19:12:18 142

原创 TextView自定义样式切换

首先,在style.xml文件中添加两个自定义样式<style name="defaultTextStyle" parent="@android:style/TextAppearance"> <item name="android:textSize">12sp</item> <item name="

2015-03-14 13:21:57 282

原创 设置输入法弹出不遮挡界面

android:windowSoftInputMode="adjustResize"

2015-01-19 17:13:26 208

原创 设置输入法默认不弹出

android:windowSoftInputMode="stateHidden"

2015-01-19 16:41:41 298

原创 ListView滚动变慢

为listview增加摩擦力方法:listview.setFriction(ViewConfiguration.getScrollFriction() * 5); 参考:http://stackoverflow.com/questions/5590001/android-listview-slow-down-scroll-speedhttp://developer.andr...

2015-01-05 20:38:56 305

原创 Android 去掉title bar的3个方法

http://daisy-sea.iteye.com/blog/1180659

2014-12-11 16:38:38 98

原创 获取当前APP的路径

Log.i(TAG, "当前应用路径:"+getApplicationContext().getFilesDir().getAbsolutePath());Log.i(TAG, "程序安装包路径:"+getApplicationContext().getPackageResourcePath());Log.i(TAG, "程序数据库路径:"+getApplicationConte...

2014-11-26 11:43:20 961

原创 解决ScrollView中嵌套ListView滚动效果冲突问题

在一个界面中既有普通控件(如:image) , 还有 listview 或 gridview , 那么如果记录比较多, 就会超出默认高度,但是无法滚动 .   解决方案如下:1. 继承listview或gridview , 重写onMeasure方法2. 使用scrollview包裹自定义的 listview或gridview import android.content.Con...

2014-11-25 22:51:38 167

原创 几秒前,几分钟前,几小时前,几天前,几月前,几年前的java实现

转载自:http://blog.csdn.net/yaerfeng/article/details/18548079package com.zuidaima;import java.text.ParseException;import java.text.SimpleDateFormat;import java.util.Date;public class Re...

2014-11-25 13:16:07 196

原创 自定义圆形图片

import android.content.Context;import android.content.res.TypedArray;import android.graphics.Bitmap;import android.graphics.BitmapShader;import android.graphics.Canvas;import android.graphi...

2014-11-25 13:12:17 68

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除