
Android
Rainbow酱
喜欢技术的 java 程序员,分享自己的技术探索经历
https://www.credly.com/badges/629a46fe-77f5-4af3-8ff6-0136b1deea19/public_url
展开
-
Android回调接口的应用
Android回调接口的应用(Fragment与Activity数据传递,Adapter的数据传出)原创 2015-05-20 16:20:32 · 407 阅读 · 0 评论 -
Adapter实例
Adapter实例(1)创建grid的自定义item布局文件grid_item.xml<RelativeLayout xmlns:android="" android:layout_width="match_parent" android:layout_height="match_parent" android:gravity="cent原创 2015-05-20 16:59:35 · 430 阅读 · 0 评论 -
Intent传List、Map
Intent传List、Map(1)新建类实现Serializable接口public class SerializableMap implements Serializable{ private Map map; public Map getMap(){ return map;} public void setMap(M转载 2015-05-27 08:45:49 · 491 阅读 · 0 评论 -
定义MySharedPreferencesFor类
定义MySharedPreferencesFor类 public class MySharedPreferences{ SharedPreferences sp; SharedPreferences.Editor editor; Context context; public MySharedPreferences(Context cont转载 2015-05-27 09:36:26 · 589 阅读 · 0 评论 -
自定义Dialog
自定义Dialog(1)自定义布局文件<LinearLayout xmlns:android="http://schmas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android转载 2015-05-28 15:09:20 · 437 阅读 · 0 评论 -
带描边的TextView
描边TextView(1)在attrs.xml中添加StrokeText属性 (2)新建类继承TextViewpublic class StrokeTextView extends TextView{ private int strokeColor; private int textColor; pub转载 2015-05-28 14:14:25 · 941 阅读 · 0 评论