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; /* ww w . j av a 2 s . c o m*/ import android.os.Bundle; import android.support.v7.app.ActionBarActivity; import com.kevelbreh.steamchat.fragment.InteractionsFragment; public class InteractionsActivity extends ActionBarActivity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); getSupportFragmentManager().beginTransaction() .add(android.R.id.content, new InteractionsFragment()) .commit(); } }