Android Open Source - OSC-Test-Suite-for-Android O S C Tester Client Preferences






From Project

Back to project page OSC-Test-Suite-for-Android.

License

The source code is released under:

Copyright (c) 2011 Tyler Freeman http://odbol.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to...

If you think the Android project OSC-Test-Suite-for-Android 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 com.odbol.pocket.osc;
/*from ww w  . j  a va  2s . c om*/
import android.content.SharedPreferences;
import android.os.Bundle;
import android.preference.Preference;
import android.preference.PreferenceActivity;

public class OSCTesterClientPreferences extends PreferenceActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        
        // Load the preferences from an XML resource
        addPreferencesFromResource(R.xml.preferences);
    }

}




Java Source Code List

com.odbol.pocket.osc.OSCSampleServerExampleWithTestClient.java
com.odbol.pocket.osc.OSCSampleServer.java
com.odbol.pocket.osc.OSCTesterClientPreferences.java
com.odbol.pocket.osc.OSCTesterClientService.java