Android Open Source - photohunt-app Settings Activity






From Project

Back to project page photohunt-app.

License

The source code is released under:

MIT License

If you think the Android project photohunt-app 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 edu.rit.csh.photohunt;
/*w  ww.jav a 2 s.  co m*/
import android.app.Activity;
import android.os.Bundle;

public class SettingsActivity extends Activity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        // Display the fragment as the main content.
        getFragmentManager().beginTransaction()
                .replace(android.R.id.content, new SettingsFragment())
                .commit();
    }
}




Java Source Code List

edu.rit.csh.photohunt.MainActivity.java
edu.rit.csh.photohunt.MySSLSocketFactory.java
edu.rit.csh.photohunt.NetworkStuff.java
edu.rit.csh.photohunt.SettingsActivity.java
edu.rit.csh.photohunt.SettingsFragment.java