Back to project page Bluetooth.
The source code is released under:
GNU General Public License
If you think the Android project Bluetooth 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.colecago.santa; //from w w w . ja v a 2 s . c om import android.app.Activity; import android.os.Bundle; import android.util.Log; public class AboutInfoActivity extends Activity { private static final String TAG = "AboutInfoActivty"; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.about); Log.d(TAG, "onCreate AboutInfo"); } }