Back to project page Kite.
The source code is released under:
Apache License
If you think the Android project Kite 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.efurture.kite.example; /*ww w . j a v a2 s .c o m*/ import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.Menu; import com.efurture.kite.Kite; public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); Kite.layout(findViewById(R.id.textview)); startActivity(new Intent(this, KiteItemActivity.class)); } @Override public boolean onCreateOptionsMenu(Menu menu) { getMenuInflater().inflate(R.menu.main, menu); return true; } }