2015年6月5日

Android读程序包的资源

摘要: private static final String ENCODING = "utf-8"; public static String loadText(Context context, String assetFilePath){ InputStream is = n... 阅读全文

posted @ 2015-06-05 14:59 2015xbx 阅读(213) 评论(0) 推荐(0) 编辑

Android一个Fragment展示列表网络数据

摘要: NewsFragment展示新闻列表的Fragment NewsFragment类继承实现ResponseListener>接口实现网络请求的响应回调实现AdapterView.OnItemClickListener接口用于实现列表点击的监听// 设置新闻mList = (ListView) mVi... 阅读全文

posted @ 2015-06-05 11:55 2015xbx 阅读(654) 评论(0) 推荐(0) 编辑

Android一个Adapter的写法

摘要: public class NewsListAdapter extends BaseAdapter { private Context mContext; private LinkedList newsList; public NewsListAdapter(Context mCon... 阅读全文

posted @ 2015-06-05 11:40 2015xbx 阅读(458) 评论(0) 推荐(0) 编辑

导航