Back to project page jogjakota-perizinan.
The source code is released under:
MIT License
If you think the Android project jogjakota-perizinan 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 id.go.jogjakota.perizinan; /*w w w. ja v a2 s. co m*/ import android.content.Intent; import android.os.Bundle; import android.widget.TextView; import butterknife.ButterKnife; import butterknife.InjectView; import butterknife.OnClick; import id.go.jogjakota.perizinan.data.Session; import id.go.jogjakota.perizinan.domain.User; public class MainActivity extends BaseActivity { @InjectView(R.id.title) TextView mTitle; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); ButterKnife.inject(this); getToolbar().setBackgroundColor(0x00ffFFff); User user = Session.get().getUser(); if (user != null) mTitle.setText(getString(R.string.welcome, user.getFullName())); } @OnClick(R.id.open_type_list) public void toType() { startActivity(new Intent(this, PermitTypeListActivity.class)); } @OnClick(R.id.open_status_list) public void toStatus() { startActivity(new Intent(this, PermitListActivity.class)); } }