自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 RoboSpices框架 使用总结

可以使用缓存可以添加headerint类型的返回json     不能使用String类型字段匹配null返回的字符串        跟String类型的字段匹配为""

2015-04-29 16:03:14 250

原创 LinearLayout组件总结

用android:layout_gravity="right"android:gravity是对元素本身说的android:layout_gravity是相对与它的父元素说的,说明元素显示在父元素的什么位置。android:layout_weight=1权重

2015-04-28 11:37:54 409

转载 java 判断字符串为空

以下是java 判断字符串是否为空的四种方法:方法一: 最多人使用的一个方法, 直观, 方便, 但效率很低:                                    if(s == null ||"".equals(s));方法二: 比较字符串长度, 效率高, 是我知道的最好一个方法:                      if(s == null |

2015-04-27 17:03:13 367

原创 java日期处理

//将Date类型转成String类型,以String作为表名,保证表名唯一        Date now=newDate();       SimpleDateFormat dateFormat = new SimpleDateFormat("yyyyMMddHHmmss");        Stringtablename=dateFormat.format(now);    

2015-04-27 16:27:05 259

原创 Android处理Drawable中的图片

Android处理Drawable中的图片android加载图片有两种方式一种是int,一种是Drawable使用例子:imageView设置背景setBackgroundResource(R.drawable.icon);setBackgroundDrawable(this.getResources().getDrawable(R.drawable.icon));se

2015-04-27 16:26:29 928

原创 int,String相互转换

int -> Stringint i=12345;String s="";第一种方法:s=i+"";第二种方法:s=String.valueOf(i);这两种方法有什么区别呢?作用是不是一样的呢?是不是在任何下都能互换呢?String -> ints="12345";int i;第一种方法:i=Integer.parseInt(s);第二种方法:i=Inte

2015-04-27 15:47:22 252

原创 项目使用到的组件

servicebroadcastasyctask极光推送handlereventbusglideandroid-uitra-pull-to-refreshswipewheelview

2015-04-27 15:22:01 281

原创 管理备忘

\\192.168.1.13\ftpadminstratormuaiwang123

2015-04-27 13:52:56 234

原创 android对话框

/*                final WheelView wheelView=new WheelView(RegisterActivity.this);                wheelView.setVisibleItems(5);                wheelView.setCyclic(false);                wheelVi

2015-04-27 13:37:59 395

原创 android根据属性名获取属性值方法

private Object getFieldValueByName(String fieldName, Object o)    {        try        {            String firstLetter = fieldName.substring(0, 1).toUpperCase();            String getter = "g

2015-04-27 11:48:26 1914

原创 abdroid下拉框

//弹出一个对话框包含选项                /*                final Spinner edit= new Spinner(RegisterActivity.this);                ViewGroup.LayoutParams pm=new ViewGroup.LayoutParams(40,40);             

2015-04-27 11:46:50 387

空空如也

空空如也

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

TA关注的人

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