Android Open Source - bluetoothviewer Settings Activity






From Project

Back to project page bluetoothviewer.

License

The source code is released under:

Apache License

If you think the Android project bluetoothviewer listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package net.bluetoothviewer;
/* w w  w . j a  v a2  s .com*/
import android.os.Bundle;
import android.preference.PreferenceActivity;


public class SettingsActivity extends PreferenceActivity {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        addPreferencesFromResource(R.xml.settings);
        setContentView(R.layout.settings_activity);
    }
}




Java Source Code List

net.bluetoothviewer.BluetoothViewerService.java
net.bluetoothviewer.BluetoothViewer.java
net.bluetoothviewer.DeviceListActivity.java
net.bluetoothviewer.SettingsActivity.java
net.bluetoothviewer.util.EmailTools.java