Back to project page Boxee-Thumb-Remote.
The source code is released under:
Apache License
If you think the Android project Boxee-Thumb-Remote 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 net.evendanan.android.thumbremote.ui; /*from w w w . j a va2 s. c om*/ import net.evendanan.android.thumbremote.R; import android.app.Activity; import android.os.Bundle; import android.view.View; public class HelpUiActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.help); } public void onCloseClicked(View view) { finish(); } }