posts - 93,  comments - 2,  trackbacks - 0
  2020年4月16日
1.必须安装nodejs
2.安装cnpm用cnpm替代npm
    地址:http://npm.taobao.org/
安装cnpm:
npm install -g cnpm --registry=https://registry.npm.taobao.org

3、用yarn替代npm
yarn的安装:
第一种方法:参考官方文档https://yarn.bootcss.com/
第二种方法:cnpm install -g yarn  或者 npm install -g yarn
4、搭建react开发环境的第一种方法(老-现在推荐):
https://reactjs.org/docs/create-a-new-react-app.html
1、必须要安装nodejs     注意:安装nodejs稳定版本      教程中的nodejs版本:v8.11.2            教程中的npm版本:v5.6.0
2.安装脚手架工具   (单文件组件项目生成工具)   只需要安装一次
npm install -g create-react-app   /  cnpm install -g create-react-app
3.创建项目   (可能创建多次)
找到项目要创建的目录:
                create-react-app reactdemo
4.cd  到项目里面
        cd  reactdemo
                npm start             yarn start运行项目
                npm run build         yarn build 生成项目
5、搭建react的开发环境的第二种方法(新-未来推荐):
        https://reactjs.org/docs/create-a-new-react-app.html
        1、必须要安装nodejs     注意:安装nodejs稳定版本      教程中的nodejs版本:v8.11.2            教程中的npm版本:v5.6.0
        2.安装脚手架工具并创建项目
            找到项目要创建的目录执行:
npx create-react-app reactdemo
4.cd  到项目里面
        cd  reactdemo
                npm start  运行项目(调试)
                npm run build 生成项目(发布)
npx介绍:
npm v5.2.0引入的一条命令(npx),引入这个命令的目的是为了提升开发者使用包内提供的命令行工具的体验。
详情:
        npx create-react-app reactdemo这条命令会临时安装 create-react-app 包,命令完成后create-react-app 会删掉,不会出现在 global 中。下次再执行,还是会重新临时安装。
npx 会帮你执行依赖包里的二进制文件。
        再比如 npx http-server 可以一句话帮你开启一个静态服务器
posted @ terry zou 阅读(283) | |  
  2020年4月9日
@postconstruct
postconstruct注释用于在完成依赖项注入以执行任何初始化之后需要执行的方法。必须在类投入使用之前调用此方法。
所有支持依赖注入的类都必须支持此注释。即使类没有请求注入任何资源,也必须调用使用postconstruct注释的方法。
只有一个方法可以使用此批注进行批注。
应用postconstruct注释的方法必须满足以下所有条件:除了拦截器之外,方法绝不能有任何参数,在这种情况下它采用interceptor规范定义的invocationcontext对象。
在拦截器类上定义的方法必须具有以下签名之一:
void <method>(invocationcontext)object <method>(invocationcontext)抛出异常注意:
postconstruct拦截器方法不能抛出应用程序异常,但可以声明它抛出检查异常,包括java.lang.exception,
如果相同的拦截器方法除了生命周期事件之外插入业务或超时方法。
如果postconstruct拦截器方法返回一个值,容器将忽略它。
在非拦截器类上定义的方法必须具有以下签名:void <method>()应用postconstruct的方法可以是publicprotectedpackage privateprivate。
除应用程序客户端外,该方法绝不能是静态的。
该方法可能是最终的。如果该方法抛出一个未经检查的异常,那么该类绝不能投入使用,除非ejb可以处理异常甚至从它们恢复的ejb

然后就会思考问题,这个注释是修饰初始化之后需要执行的方法,那么它和@autowired、构造函数的执行顺序是什么呢?(当然注释中已经说明了postconstruct注释用于在完成依赖项注入之后)
@service
public class beana {

    @autowired
    private beanb beanb;

    public beana() {
        system.out.println("这是bean a 的构造方法");
    }
    @postconstruct
    private void init() {
        system.out.println("这是beana的 init 方法");
        beanb.testb();
    }
}
@service
public class beanb {

    @postconstruct
    private void init() {
        system.out.println("这是beanb 的init 方法");
    }
    public beanb() {
        system.out.println("这是bean b的 构造方法");
    }
    void testb() {
        system.out.println("这是bean b 的 testb 方法");
    }
}

启动后输出:
这是bean a 的构造方法 
这是bean b的 构造方法
这是beanb 的init 方法
这是beana的 init 方法
这是bean b 的 testb 方法

所以得到结论: 构造方法 > @autowired > @postconstruct
posted @ terry zou 阅读(277) | |  
1、applicationcontext
spring的核心,context我们通常解释为上下文环境。applicationcontext则是应用的容器。 spring把bean(object)放在容器中,需要用就通过get方法取出来。在applicationcontext接口的众多实现类中,有3个是我们经常用到的(见表1-1),并且使用这3个实现类也基本能满足我们java ee应用开发中的绝大部分需求。
表1-1 applicationcontext接口的常用实现类介绍
classpathxmlapplicationcontext
从类路径classpath中寻找指定的xml配置文件,找到并装载完成applicationcontext的实例化工作。例如: //装载单个配置文件实例化applicationcontext容器
applicationcontext cxt = new classpathxmlapplicationcontext("applicationcontext.xml");
//装载多个配置文件实例化applicationcontext容器
string[] configs = {"bean1.xml","bean2.xml","bean3.xml"};
applicationcontext cxt = new classpathxmlapplicationcontext(configs);
filesystemxmlapplicationcontext
从指定的文件系统路径中寻找指定的xml配置文件,找到并装载完成applicationcontext的实例化工作。例如://装载单个配置文件实例化applicationcontext容器
applicationcontext cxt = new filesystemxmlapplicationcontext("beans.xml");
//装载多个配置文件实例化applicationcontext容器
string[] configs = {"c:/beans1.xml","c:/beans2.xml"};
applicationcontext cxt = new filesystemxmlapplicationcontext(configs);
xmlwebapplicationcontext
从web应用中寻找指定的xml配置文件,找到并装载完成applicationcontext的实例化工作。这是为web工程量身定制的,使用webapplicationcontextutils类的getrequiredwebapplicationcontext方法可在jsp与servlet中取得ioc容器的引用
2、applicationevent
是个抽象类,里面只有一个构造函数和一个长整型的timestamp。其源码如下

public abstract class applicationevent extends eventobject {
 
    /** use serialversionuid from spring 1.2 for interoperability */
    private static final long serialversionuid = 7099057708183571937l;
 
    /** system time when the event happened */
    private final long timestamp;
 
    /**
     * create a new applicationevent.
     * 
@param source the object on which the event initially occurred (never {@code null})
     
*/
    public applicationevent(object source) {
        super(source);
        this.timestamp = system.currenttimemillis();
    }
 
    /**
     * return the system time in milliseconds when the event happened.
     
*/
    public final long gettimestamp() {
        return this.timestamp;
    }
}

3、applicationlistener

是一个接口,里面只有一个onapplicationevent方法。如果在上下文中部署一个实现了applicationlistener接口的bean,那么每当在一个applicationevent发布到 applicationcontext时,调用applicationcontext.publishevent()方法,这个bean得到通知。类似于oberver设计模式。
其源码如下:

public interface applicationlistenerextends applicationevent> extends eventlistener {
    /**
     * handle an application event.
     * 
@param event the event to respond to
     
*/
    void onapplicationevent(e event);
 
}
下面举个例子
自定义事件notifyevent:
import org.springframework.context.applicationevent;

public class notifyevent  extends applicationevent  {
    private string email;
    private string content;
    public notifyevent(object source){
        super(source);
    }

    public notifyevent(object source,string email,string content){
        super(source);
        this.email = email;
        this.content = content;
    }

    public string getemail() {
        return email;
    }

    public void setemail(string email) {
        this.email = email;
    }

    public string getcontent() {
        return content;
    }

    public void setcontent(string content) {
        this.content = content;
    }
}

定义监听器notifylistener:
import org.springframework.context.applicationlistener;
import org.springframework.context.annotation.configuration;

@configuration
public class notifylistener implements applicationlistener{
    @override
    public void onapplicationevent(notifyevent event) {
        system.out.println("邮件地址:"   event.getemail());
        system.out.println("邮件内容:"   event.getcontent());
    }
}

单元测试类listenertest:
import org.junit.test;
import org.junit.runner.runwith;
import org.springframework.beans.factory.annotation.autowired;
import org.springframework.boot.test.context.springboottest;
import org.springframework.test.context.junit4.springrunner;
import org.springframework.web.context.webapplicationcontext;

@runwith(springrunner.class)
@springboottest(classes = serverlauncher.class, webenvironment = springboottest.webenvironment.random_port)
public class listenertest {
    @autowired
    private webapplicationcontext webapplicationcontext;

    @test
    public void testlistener(){
        notifyevent event = new notifyevent("object","abc@qq.com","this is the content");
        webapplicationcontext.publishevent(event);
    }
}
posted @ terry zou 阅读(1234) | |  

之前用户使用的是3个注解注解他们的main类。分别是@configuration,@enableautoconfiguration,@componentscan。由于这些注解一般都是一起使用,spring boot提供了一个统一的注解@springbootapplication。

@springbootapplication = (默认属性)@configuration @enableautoconfiguration @componentscan。

@springbootapplication 
public class applicationmain { 
    public static void main(string[] args) { 
        springapplication.run(application.class, args); 
    } 
}

分开解释@configuration,@enableautoconfiguration,@componentscan。
1、@configuration:提到@configuration就要提到他的搭档@bean。使用这两个注解就可以创建一个简单的spring配置类,可以用来替代相应的xml配置文件。

 
    class="com.test.car"> 
         
     
    class="com.test.wheel"> 
 

 相当于:

@configuration 
public class conf { 
    @bean 
    public car car() { 
        car car = new car(); 
        car.setwheel(wheel()); 
        return car; 
    } 
    @bean  
    public wheel wheel() { 
        return new wheel(); 
    } 
}

@configuration的注解类标识这个类可以使用spring ioc容器作为bean定义的来源。@bean注解告诉spring,一个带有@bean的注解方法将返回一个对象,该对象应该被注册为在spring应用程序上下文中的bean。

2、@enableautoconfiguration:能够自动配置spring的上下文,试图猜测和配置你想要的bean类,通常会自动根据你的类路径和你的bean定义自动配置。

3、@componentscan:会自动扫描指定包下的全部标有@component的类,并注册成bean,当然包括@component下的子注解@service,@repository,@controller。


posted @ terry zou 阅读(103) | |  
  2015年7月13日
package com.zhihe.xqsh.utils;

import java.io.file;
import java.io.fileoutputstream;
import java.io.ioexception;
import java.io.inputstream;
import java.io.unsupportedencodingexception;
import java.util.date;
import java.util.list;

import org.apache.http.httpentity;
import org.apache.http.httpresponse;
import org.apache.http.httpstatus;
import org.apache.http.httpversion;
import org.apache.http.namevaluepair;
import org.apache.http.client.clientprotocolexception;
import org.apache.http.client.httpclient;
import org.apache.http.client.entity.urlencodedformentity;
import org.apache.http.client.methods.httpget;
import org.apache.http.client.methods.httppost;
import org.apache.http.conn.clientconnectionmanager;
import org.apache.http.conn.params.connmanagerparams;
import org.apache.http.conn.params.connrouteparams;
import org.apache.http.conn.scheme.plainsocketfactory;
import org.apache.http.conn.scheme.scheme;
import org.apache.http.conn.scheme.schemeregistry;
import org.apache.http.conn.ssl.sslsocketfactory;
import org.apache.http.impl.client.defaulthttpclient;
import org.apache.http.impl.conn.tsccm.threadsafeclientconnmanager;
import org.apache.http.impl.cookie.basicclientcookie;
import org.apache.http.params.basichttpparams;
import org.apache.http.params.httpconnectionparams;
import org.apache.http.params.httpparams;
import org.apache.http.params.httpprotocolparams;
import org.apache.http.util.entityutils;

import com.zhihe.xqsh.network.servererrorexception;

import android.accounts.networkerrorexception;
import android.annotation.suppresslint;
import android.util.log;


public class customerhttpclient {
private static final string tag = customerhttpclient.class.getsimplename();

private static defaulthttpclient customerhttpclient;

private customerhttpclient() {
}

public static synchronized httpclient gethttpclient() {
if (null == customerhttpclient) {
httpparams params = new basichttpparams();
// 设置�?��基本参数
httpprotocolparams.setversion(params, httpversion.http_1_1);
httpprotocolparams.setcontentcharset(params, "utf-8");
httpprotocolparams.setuseexpectcontinue(params, true);
httpprotocolparams.setuseragent(params, "mozilla/5.0(linux;u;android 2.2.1;en-us;nexus one build.frg83) "
"applewebkit/553.1(khtml,like gecko) version/4.0 mobile safari/533.1");
// 超时设置
/* 从连接池中取连接的超时时�?*/
connmanagerparams.settimeout(params, 2000);
connmanagerparams.setmaxtotalconnections(params, 800);
/* 连接超时 */
httpconnectionparams.setconnectiontimeout(params, 5000);
/* 请求超时 */
httpconnectionparams.setsotimeout(params, 10000);

// 设置我们的httpclient支持http和https两种模式
schemeregistry schreg = new schemeregistry();
schreg.register(new scheme("http", plainsocketfactory.getsocketfactory(), 80));
schreg.register(new scheme("https", sslsocketfactory.getsocketfactory(), 443));

// 使用线程安全的连接管理来创建httpclient
clientconnectionmanager conmgr = new threadsafeclientconnmanager(params, schreg);
// �?��连接数:connmanagerparams.setmaxtotalconnections(params, 50);
customerhttpclient = new defaulthttpclient(conmgr, params);
}
return customerhttpclient;
}

/**
* 以get方式提交数据
* @param url 提交地址
* @param params 参数
* @return 响应结果
* @throws servererrorexception 请求失败
* @throws networkerrorexception 连接失败
*/
public static string get(string url, string params) throws servererrorexception, networkerrorexception {
int trytimes = 0;
nullpointerexception ex;
do {
try {
return tryget(url, params);
} catch (nullpointerexception e) {
ex = e;
trytimes ;
}
} while (trytimes < 3);
throw ex;
}

/**
* 以get方式提交数据
* @param url 提交地址
* @param params 参数
* @return 响应结果
* @throws servererrorexception 请求失败
* @throws networkerrorexception 连接失败
*/
public static string tryget(string url, string params) throws servererrorexception, networkerrorexception {
try {
httpget request = new httpget(url params);

/*if (lotteryapplication.iscmwap()) {
org.apache.http.httphost proxy = new org.apache.http.httphost("10.0.0.172", 80, "http");
httpparams httpparams = new basichttpparams();
connrouteparams.setdefaultproxy(httpparams, proxy);
request.setparams(httpparams);
}*/

httpclient client = gethttpclient();
httpresponse response = client.execute(request);
if (response.getstatusline().getstatuscode() != httpstatus.sc_ok) {
throw new servererrorexception("��������æ�����ժ�����");
}
httpentity resentity = response.getentity();
string result = (resentity == null) ? null : entityutils.tostring(resentity, "utf-8");
return result;
} catch (unsupportedencodingexception e) {
logw(e.getmessage());
return null;
} catch (clientprotocolexception e) {
logw(e.getmessage());
return null;
} catch (ioexception e) {
throw new networkerrorexception("���ӳ��ɹ���������������", e);
}
}

private static void logw(string string) {
if (string != null) {
log.w(tag, string);
}
}

/**
* 以post方式提交数据
* @param url 提交地址
* @param params 参数
* @return 响应结果
* @throws servererrorexception 请求失败
* @throws networkerrorexception 连接失败
*/
public static string post(string url, list params) throws servererrorexception, networkerrorexception {
return post(url, params, null);
}

/**
* 以post方式提交数据
* @param url 提交地址
* @param params 参数
* @param sotimeout 响应超时时间,单位毫�?
* @return 响应结果
* @throws servererrorexception 请求失败
* @throws networkerrorexception 连接失败
*/
public static string post(string url, list params, int sotimeout) throws servererrorexception,
networkerrorexception {
httpparams httpparams;
if (sotimeout <= 0) {
httpparams = null;
} else {
httpparams = new basichttpparams();
httpconnectionparams.setsotimeout(httpparams, sotimeout);
}
return post(url, params, httpparams);
}

/**
* 以post方式提交数据
* @param url 提交地址
* @param params 参数
* @param httpparams http参数
* @return 响应结果
* @throws servererrorexception 请求失败
* @throws networkerrorexception 连接失败
*/
public static string post(string url, list params, httpparams httpparams) throws servererrorexception,
networkerrorexception {
int trytimes = 0;
nullpointerexception ex;
do {
try {
return trypost(url, params, httpparams);
} catch (nullpointerexception e) {
ex = e;
trytimes ;
}
} while (trytimes < 3);
throw ex;
}

/**
* 以post方式提交数据
* @param url 提交地址
* @param params 参数
* @param httpparams http参数
* @return 响应结果
* @throws servererrorexception 请求失败
* @throws networkerrorexception 连接失败
*/
public static string trypost(string url, list params, httpparams httpparams) throws servererrorexception,
networkerrorexception {
try {
httppost request = new httppost(url);
if (params != null && params.size() > 0) {
request.setentity(new urlencodedformentity(params, "utf-8"));
}

//if (lotteryapplication.iscmwap()) {
//org.apache.http.httphost proxy = new org.apache.http.httphost("10.0.0.172", 80, "http");
//if (httpparams == null)
//httpparams = new basichttpparams();
//connrouteparams.setdefaultproxy(httpparams, proxy);
//}

if (httpparams != null)
request.setparams(httpparams);
//log.v("cs", params.tostring());
httpclient client = gethttpclient();
httpresponse response = client.execute(request);
if (response.getstatusline().getstatuscode() != httpstatus.sc_ok) {
//log.v("cs", params.tostring());
//log.v("cs", response.getstatusline().getstatuscode() "");
request.abort(); 
throw new servererrorexception("��������æ�����ժ�����");
}
if (response.getstatusline ().getstatuscode () != 200) {  
request.abort();  //�ж�����,���������կ�ʼ��һ������
                return null;  
            } 
httpentity resentity = response.getentity();
string result = (resentity == null) ? null : entityutils.tostring(resentity, "utf-8");
//log.v("cs", params.tostring() "||||" result);
return result;
} catch (unsupportedencodingexception e) {
logw(e.getmessage());
return null;
} catch (clientprotocolexception e) {
logw(e.getmessage());
return null;
} catch (ioexception e) {
throw new networkerrorexception(e.getmessage(), e);
//throw new networkerrorexception("连接不成功,请检查网络设�?, e);
}
}

@suppresslint("sdcardpath")
public static string download(string url) throws servererrorexception, networkerrorexception {
try {
//log.i("http-download", url);
httppost request = new httppost(url);
httpclient client = gethttpclient();
httpresponse response = client.execute(request);
if (response.getstatusline().getstatuscode() != httpstatus.sc_ok) {
throw new servererrorexception("��������æ�����ժ�����");
}

httpentity entity = response.getentity();
inputstream is = entity.getcontent();
if (is == null)
throw new servererrorexception("stream is null ");

string fileext = url.substring(url.lastindexof(".") 1, url.length()).tolowercase();
string filename = url.substring(url.lastindexof("/") 1, url.lastindexof("."));

file tempfile = new file("/sdcard/" filename "." fileext);
if (!tempfile.exists())
tempfile.createnewfile();
fileoutputstream fileoutputstream = new fileoutputstream(tempfile);

byte[] buf = new byte[1024];
int ch;
while ((ch = is.read(buf)) != -1) {
fileoutputstream.write(buf, 0, ch);
}

fileoutputstream.flush();
fileoutputstream.close();
return tempfile.getabsolutepath();
} catch (unsupportedencodingexception e) {
logw(e.getmessage());
return null;
} catch (clientprotocolexception e) {
logw(e.getmessage());
return null;
} catch (ioexception e) {
throw new networkerrorexception(e.getmessage(), e);
}
}

/**
* 清空cookie
*/
public static void clearcookie() {
if (customerhttpclient != null)
customerhttpclient.getcookiestore().clear();
}

/**
* 清除指定cookie
* @param name cookie名称
*/
public static void clearcookie(string name) {
if (customerhttpclient == null)
return;

basicclientcookie expiredcookie = new basicclientcookie(name, "null");
expiredcookie.setexpirydate(new date(system.currenttimemillis() - 1000));
customerhttpclient.getcookiestore().addcookie(expiredcookie);
}
}
posted @ terry zou 阅读(247) | |  
http://yunpan.cn/ccdbtgqaya4u7
posted @ terry zou 阅读(127) | |  
  2015年7月9日
private drawable img_time_filter,img_time_filter_selected ;
//过滤器textview中显示的图片
img_time_filter = getresources().getdrawable(r.drawable.time_filter);
//调用setcompounddrawables时,必须调用drawable.setbounds()方法,否则图片不显示
img_time_filter.setbounds(0, 0, img_time_filter.getminimumwidth(), img_time_filter.getminimumheight());
img_time_filter_selected = getresources().getdrawable(r.drawable.time_filter_selected);
img_time_filter_selected.setbounds(0, 0, img_time_filter_selected.getminimumwidth(), img_time_filter_selected.getminimumheight());
tv_filtertime.setcompounddrawables(img_time_filter_selected, null, null, null);
tv_filtertime.settextcolor(getresources().getcolor(r.color.white));
rl_filtertime.setbackgroundcolor(getresources().getcolor(r.color.red));

tv_filtertime.setcompounddrawables(img_time_filter, null, null, null);
rl_filtertime.setbackgroundcolor(getresources().getcolor(r.color.white)); 
lv_filtertime.setvisibility(view.invisible);
posted @ terry zou 阅读(186) | |  
  2015年7月8日
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/white"
    android:orientation="vertical" >
   
        android:id="@ id/bmapview_routeplanactivity"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:clickable="true" />
   
        android:layout_width="match_parent"
        android:layout_height="60dp"
        android:background="@drawable/common_title_back"
        android:gravity="center"
        android:padding="5dp" >
       
            android:id="@ id/button_transit_routeplan"
            android:layout_width="0dp"
            android:drawableleft="@drawable/ic_bus"
            android:padding="5dp"
            android:background="@drawable/selector_white_gray"
            android:layout_height="50dp"
            android:layout_weight="1.0"
            android:onclick="searchbuttonprocess"
            android:text="公交" />
       
            android:id="@ id/button_drive_routeplan"
            android:layout_width="0dp"
             android:drawableleft="@drawable/ic_drive"
            android:layout_height="50dp"
            android:layout_weight="1.0"
            android:padding="5dp"
            android:background="@drawable/selector_white_gray"
            android:onclick="searchbuttonprocess"
            android:text="驾车" />
       
            android:id="@ id/button_walk_routeplan"
            android:layout_width="0dp"
            android:layout_height="50dp"
             android:drawableleft="@drawable/ic_walk"
            android:layout_weight="1.0"
            android:padding="5dp"
            android:background="@drawable/selector_white_gray"
            android:onclick="searchbuttonprocess"
            android:text="步行" />
   
   
        android:id="@ id/linearlayout_node_routeplan"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginbottom="10dip"
        android:visibility="gone"
        android:gravity="bottom|center_horizontal" >
       
            android:id="@ id/button_pre_routeplan"
            android:layout_width="60dp"
            android:layout_height="30dp"
            android:layout_marginright="2dip"
            android:background="@drawable/pre_"
            android:onclick="nodeclick" />
       
            android:id="@ id/button_next_routeplan"
            android:layout_width="60dp"
            android:layout_height="30dp"
            android:layout_marginleft="2dip"
            android:background="@drawable/next_"
            android:onclick="nodeclick" />
   
posted @ terry zou|  
           android:id="@ id/estate_linear"
           android:layout_width="fill_parent"
           android:layout_height="35dp"
           android:layout_weight="1"
           android:background="@drawable/border_rounded_gray_white"
           android:layout_gravity="center_vertical"
           android:gravity="center_vertical"
           android:layout_margin="5dp"
           android:orientation="horizontal" >
           android:id="@ id/object_btn_search"
           android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           android:layout_marginleft="8dp"
           android:layout_gravity="center_vertical|right"
           android:background="@drawable/btn_search"
           android:contentdescription="@null"
           android:scaletype="fitxy" />
            android:layout_width="1dp"
            android:layout_height="33dp"
            android:layout_marginleft="8dp"
            android:background="@color/color_line" />
           
                 android:id="@ id/object_et_content"
                 style="@style/stringsearchtext"
                 android:layout_gravity="left|center_vertical"
                 android:layout_marginleft="2dp"
                 android:layout_marginright="8dp"
                 android:layout_weight="1"
                 android:background="@null"
                 android:hint="@string/tip_search_hint"
                 android:imeoptions="actionsend"
                 android:singleline="true"
                 android:textcursordrawable="@null"
                 android:textcolorhint="#626463" />
           
                 android:id="@ id/object_btn_del"
                 android:layout_width="wrap_content"
                 android:layout_height="wrap_content"
                 android:layout_gravity="right|center_vertical"
                 android:layout_marginright="10dp"
                 android:background="@drawable/ic_clear" />
         


border_rounded_gray_white.xml
   
   
       
           
           
                android:bottomleftradius="3dp"
                android:bottomrightradius="3dp"
                android:topleftradius="3dp"
                android:toprightradius="3dp" />
       
   
   
   
        android:bottom="1dp"
        android:left="1dp"
        android:right="1dp"
        android:top="1dp">
       
           
           
                android:bottomleftradius="3dp"
                android:bottomrightradius="3dp"
                android:topleftradius="3dp"
                android:toprightradius="3dp" />
       
   




btn_search.xml
   
   
   
   
   
   
   
   
   
   
   
   


#bebebe



private textwatcher textwatcher = new textwatcher() {
@override
public void beforetextchanged(charsequence s, int start, int count,
int after) {
}
@override
public void ontextchanged(charsequence s, int start, int before,
int count) {
}
@override
public void aftertextchanged(editable s) {
mkeywords = tv_keyword.gettext().tostring();
agutils.log(tag "mkeywords:" mkeywords, 4);
if (textutils.isempty(mkeywords)) {
object_btn_del.setvisibility(view.gone);
} else {
object_btn_del.setvisibility(view.visible);
searchindexlistinfo();
}
}
};

tv_keyword.addtextchangedlistener(textwatcher);
posted @ terry zou|  
  2015年6月24日

转载:
当应用运行起来后就会开启一条线程,线程中会运行一个任务栈,当activity实例创建后就会放入任务栈中。activity启动模式的设置在
androidmanifest.xml文件中,通过配置activity的属性android:launchmode=""设置

 

1. standared模式(默认)

我们平时直接创建的activity都是这种模式的activity,这种模式的activity的特点是:只要你创建了activity实例,一旦激活该activity,则会向任务栈中加入新创建的实例,退出activity则会在任务栈中销毁该实例。

 

2. singletop模式

这种模式会考虑当前要激活的activity实例在任务栈中是否正处于栈顶,如果处于栈顶则无需重新创建新的实例,会重用已存在的实例,否则会在任务栈中创建新的实例。

 

3. singletask模式

如果任务栈中存在该模式的activity实例,则把栈中该实例以上的activity实例全部移除,调用该实例的newinstance()方法重用该activity,使该实例处於栈顶位置,否则就重新创建一个新的activity实例。

 

4. singleinstance模式

当该模式activity实例在任务栈中创建后,只要该实例还在任务栈中,即只要激活的是该类型的activity,都会通过调用实例的newinstance()方法重用该activity,此时使用的都是同一个activity实例,它都会处于任务栈的栈顶。此模式一般用于加载较慢的,比较耗性能且不需要每次都重新创建的activity

posted @ terry zou 阅读(440) | |  
2023年12月
262728293012
3456789
10111213141516
17181920212223
24252627282930
31123456

常用链接

留言簿(2)

terry zou -凯发k8网页登录

搜索

  •  

最新随笔

最新评论

  • 评论内容较长,点击标题查看
  • --json.com
  • 评论内容较长,点击标题查看
  • --deepak singh

阅读排行榜

评论排行榜

网站地图