package com.pinthecloud.athere.activity; import android.app.FragmentManager; import android.app.FragmentTransaction; import android.os.Bundle; import com.pinthecloud.athere.R; import com.pinthecloud.athere.fragment.SplashFragment; public class SplashActivity extends AhActivity{ @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_frame); FragmentManager fragmentManager = getFragmentManager(); FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction(); SplashFragment fragment = new SplashFragment (); fragmentTransaction.add(R.id.activity_container, fragment); fragmentTransaction.commit(); } }