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; // w w w . j av a2s.c om import android.app.Activity; import android.app.ListFragment; import android.os.Bundle; import android.view.View; import com.kevelbreh.steamchat.fragment.FriendsFragment; /** * Primary friends activity containing a {@link com.kevelbreh.steamchat.fragment.FriendsFragment}. */ public class FriendsActivity extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); getFragmentManager() .beginTransaction() .add(android.R.id.content, new FriendsFragment()) .commit(); } }