Android Open Source - Android-CepView Cep View Exemplo Activity






From Project

Back to project page Android-CepView.

License

The source code is released under:

Copyright (c) 2013, Arthur Nascimento Assuncao All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditio...

If you think the Android project Android-CepView listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.arthurassuncao.cepview_exemplo;
//  w  w  w  . j a v  a2 s . co m
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;

public class CepViewExemploActivity extends Activity {

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_cep_view_exemplo);
  }

  @Override
  public boolean onCreateOptionsMenu(Menu menu) {
    getMenuInflater().inflate(R.menu.cep_view_exemplo, menu);
    return true;
  }

}




Java Source Code List

com.arthurassuncao.cepview.CepView.java
com.arthurassuncao.cepview.ICep.java
com.arthurassuncao.cepview.IViewCEP.java
com.arthurassuncao.cepview_exemplo.CepViewExemploActivity.java
com.arthurassuncao.cepview.model.CEP.java
com.arthurassuncao.cepview.net.ClienteHttp.java
com.arthurassuncao.cepview.net.Conexao.java
com.arthurassuncao.cepview.net.TarefaObtemDadosCEP.java
com.arthurassuncao.cepview.util.Constantes.java