MyDemo
qq_137237056
这个作者很懒,什么都没留下…
展开
-
Activity的生命周期
转自 : http://blog.csdn.net/liuhe688/article/details/6733407子曰:溫故而知新,可以為師矣。《論語》 学习技术也一样,对于技术文档或者经典的技术书籍来说,指望看一遍就完全掌握,那基本不大可能,所以我们需要经常回过头再仔细研读几遍,以领悟到作者的思想精髓。 近来回顾了一下关于Activity的生命周期,参看了相关书籍和官方文档,也有了不小的收获转载 2016-09-09 18:57:30 · 405 阅读 · 0 评论 -
百度定位+广播检测网络(小白版)
MainActivity 布局 <com.baidu.mapapi.map.MapView android:id="@+id/bmapView" android:layout_width="fill_parent" android:layout_height="fill_parent" android:clickable="tr原创 2016-05-27 16:17:15 · 415 阅读 · 0 评论 -
进入界面EditText不获取键盘
在根据中加入这两个 属性就可以简单实现 android:focusable="true" android:focusableInTouchMode="true"<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"翻译 2016-06-15 23:45:40 · 250 阅读 · 0 评论 -
ViewPager无限轮播+自定义圆点
在drawable创建两个shape标签的xml布局,暗色个红色<?xml version="1.0" encoding="utf-8"?><shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <corners android:radius="5dp原创 2016-05-09 21:22:16 · 482 阅读 · 0 评论 -
圆角TestView的实现
<?xml version="1.0" encoding="utf-8"?><shape xmlns:android="http://schemas.android.com/apk/res/android" > <!-- shape : 设置图片的行状态 rectangle:矩形 oval:随园 line:线 ring:环形--> <!-- 圆角 --> <!--原创 2016-06-10 10:13:38 · 238 阅读 · 0 评论 -
Android 跑马灯效果的实现
实现方法很简单,现在这个功能也不常用了 <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:textSize="18sp" android:singleLine="true" and原创 2016-06-03 11:14:23 · 320 阅读 · 0 评论 -
xStream解析xml文件
以http://apis.juhe.cn/goodbook/catalogkey=%207a720bd436ee2b61339e8d0f1dd81d76&dtype=xml 为例(xml解析需要用到两个注解,一个属性/类注解,一个是集合注解),先看Bean.class 写xml和json的Bean.class的需要特别注意的一点是 xml.class类里的class类是静态的,要不然会报错原创 2016-05-31 18:08:51 · 338 阅读 · 0 评论 -
城市列表<使用百度定位>
activity_main 布局<?xml version="1.0" encoding="utf-8"?><FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_pa原创 2016-05-27 18:00:17 · 855 阅读 · 0 评论 -
水波纹
package com.lix.shuobowen.bo_4;import android.content.Context;import android.content.Intent;import android.graphics.Canvas;import android.graphics.Color;import android.graphics.Paint;i翻译 2016-05-11 20:07:26 · 313 阅读 · 0 评论 -
[判断手机网络状态]
创建 NetStateUtils 类 代码如下:import android.content.Context;import android.net.ConnectivityManager;import android.net.NetworkInfo;public class NetStateUtils { /** * 判断网络连接状态 * * @param原创 2016-05-26 16:51:35 · 502 阅读 · 0 评论 -
ScrollView和listView冲突解决
写一个类继承ListView,重写onTouchEvent()public class MyListView extends ListView{ public MyListView(Context context, AttributeSet attrs) { super(context, attrs); } @Override public boolean原创 2016-05-13 09:39:24 · 256 阅读 · 0 评论 -
小知识记录,方便自己查询
String 转 BufferedReaderString s = "需要转的内容";// 1.要将字符串转成字节byte[] by = s.getBytes();// 2.构造一个字节输入流InputStream is = new ByteArrayInputStream(by);// 3.通过输入流构造一个字符流InputStreamReader isr = new ...原创 2018-05-29 15:53:13 · 238 阅读 · 0 评论