Back to project page steamchat.
The source code is released under:
Apache License
If you think the Android project steamchat 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.kevelbreh.steamchat.activity; /*from ww w. j a v a 2s .co m*/ import android.app.Activity; import android.os.Bundle; import com.kevelbreh.steamchat.fragment.SettingsFragment; /** * Pretty stock settings activity with preference fragment. */ public class SettingsActivity extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); getFragmentManager() .beginTransaction() .add(android.R.id.content, new SettingsFragment()) .commit(); } }