Back to project page Android-CepView.
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.
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; } }