Android Open Source - android About Activity






From Project

Back to project page android.

License

The source code is released under:

GNU General Public License

If you think the Android project 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 de.babioch.wordclockremote.activity;
// ww  w .  j a  v a2  s . c  om
import android.os.Bundle;
import android.support.v4.app.FragmentTransaction;
import android.support.v7.app.ActionBarActivity;
import de.babioch.wordclockremote.R;
import de.babioch.wordclockremote.fragment.AboutFragment;


public class AboutActivity extends ActionBarActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState)
    {

        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_about);

        if (savedInstanceState == null) {

            FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
            transaction.add(R.id.container, new AboutFragment());
            transaction.commit();

        }

    }

}




Java Source Code List

de.babioch.wordclockremote.activity.AboutActivity.java
de.babioch.wordclockremote.activity.MainActivity.java
de.babioch.wordclockremote.activity.SettingsActivity.java
de.babioch.wordclockremote.fragment.AboutFragment.java
de.babioch.wordclockremote.fragment.AdvancedFragment.java
de.babioch.wordclockremote.fragment.MainFragment.java
de.babioch.wordclockremote.fragment.SettingsFragment.java
de.babioch.wordclockremote.fragment.TerminalFragment.java