1.no projeto build.gradle
add
2.at app build.gradle
adicionar
dependencies {
...
compile 'ljk.android.pangjiao:pangjiao:1.0.2'
annotationProcessor 'ljk.android.pangjiao:pangjiao:1.0.2'
}
android {
compileOptions {
...
sourceCompatibility JavaVersion . VERSION_1_8
targetCompatibility JavaVersion . VERSION_1_8
}
}
###inicializar ###
public class TESTApplication extends Application {
@ Override
public void onCreate () {
super . onCreate ();
PangJiao . init ( this );
}
}
1. uso em atividade
public class MainActivity extends PJAppCompatActivity {
@ InitView ( R . id . tv_title )
public TextView tvTitle ;
@ Override
public int initView () {
return R . layout . activity_main ;
}
@ Override
public void initData () {
tvTitle . setText ( "hello " );
}
@ OnClick ( R . id . tv_title )
public void tvClick () {
Toast . makeText ( this , tvTitle . getText (). toString (), Toast . LENGTH_SHORT ). show ();
}
@ OnClick ( R . id . tv_title )
public View . OnClickListener tvTitle_Click = v -> {
Toast . makeText ( this , tvTitle . getText (). toString (), Toast . LENGTH_SHORT ). show ();
};
@ OnClick ({ R . id . tv_title , R . id . tv_text })
public void onClick ( View view ){
}
Ou
PangJiao . inject ( activity );
2.use em fragmento
public class TESTFragment extends PJFragment {
@ InitView ( R . id . btn_test )
public Button btnTest ;
@ Override
protected int initView () {
return R . layout . fragment_test ;
}
@ Override
protected void initData () {
btnTest . setText ( "hello pangjiao" );
}
}
Ou
PangJiao . inject ( view , object );
em pangjiao framwork hava @Service @Presenter anotação, Pessoas que conhecem a primavera conhecem @Autowire.at pangjiao hava @Autowire e @AutowireProxy . pangjiao recomenda que você subcontrate seu código para o diretório a seguir.
ui (pacote) -atividade (pacote) -fragmento (pacote)
serviço -interface(.java) -imp (pacote)
aplicação -interface(.java) -imp (pacote)
Comece a usar pangjia
interface da camada de aplicativo nova interface
public interface IMemberPresent extends IPresenter {
void login ( String name , String pwd );
}
adicionar impacto
@ Presenter
public class MemberPresent implements IMemberPresent {
@ Autowire
public IAppService appService ;
@ TargetView
public IMemberView memberView ;
@ Override
public void onDestroy () {
this . memberView = null ;
}
@ Override
public void login ( String name , String pwd ) {
appService . login ( name , pwd );
}
}
camada de interface do usuário
public class MainActivity extends PJAppCompatActivity implements IMemberView {
@ AutowireProxy
public IMemberPresent memberPresent ;
@ Override
public int initView () {
return R . layout . activity_main ;
}
@ Override
public void initData () {
memberPresent . login ( "Tom" , "123456" );
}
@ Override
public void refresh ( Object o ) {
}
}
Violação POST padrão, formato JSON do corpo da solicitação. A camada subjacente é a implementação HttpURLConnection.
@ Net ( api = "http://www.baidu.com" , connectTimeOut = 10000 )
public class RequestActive extends NetModel < ResponseActive > {
private String ActiveCode ;
public String getActiveCode () {
return ActiveCode ;
}
public void setActiveCode ( String ActiveCode ) {
this . ActiveCode = ActiveCode ;
}
}
public class ResponseActive extends ResponseBase {
private boolean issuccess ;
private String msg ;
private String data ;
public boolean isIssuccess () {
return issuccess ;
}
public void setIssuccess ( boolean issuccess ) {
this . issuccess = issuccess ;
}
public String getMsg () {
return msg ;
}
public void setMsg ( String msg ) {
this . msg = msg ;
}
public String getData () {
return data ;
}
public void setData ( String data ) {
this . data = data ;
}
}
como usar? xx.excute();//Sincronização de thread
public ResponseActive active ( String activeCode ) {
RequestActive requestActive = new RequestActive ();
requestActive . setActiveCode ( activeCode );
return requestActive . execute ();
}
Entidade e @Entidade, atributo público, sem classe de encapsulamento
@ Entity
public class User {
@ Id
public int id ;
@ Column
public String userName ;
@ Column
public String telPhone ;
}
adicionar, atualizar, consultar, excluir
@ Override
public void queryUser ( String userName ) {
//添加新的:user,更新同样的方法,确保Id不为0
User user = new User ();
user . userName = userName ;
user . telPhone = "1322222222" ;
SQEntity . save ( user );
//查询:构建实体
User userQuery = new User ();
userQuery . userName = userName ;
List < User > search = SQEntity . search ( User . class , userQuery );
//查询:where
List < User > search1 = SQEntity . search ( User . class , "userName = '" + userName + " '" );
//删除:构建实体
User userDelete = new User ();
userDelete . telPhone = "1322222222" ;
SQEntity . deleteWhere ( User . class , userDelete );
//删除:Id
SQEntity . delete ( User . class , 2 );
}
Não são apenas as consultas associativas que são suportadas atualmente.
Use @Autowireproxy ao injetar objetos na camada de UI.
O @autowireproxy irá injetar um objeto proxy que será executado na thread .
Portanto, as solicitações de rede na camada de aplicativo da camada UI não precisam iniciar os próprios threads.
O objeto que precisa ser gerenciado pelo contêiner pangjiao precisa ser adicionado a @service ou @Presenter . Classe decorada por * @service ou ** * @presenter **, não possui outras variáveis de membro.