Back to project page android-wear-GoPro-Remote.
The source code is released under:
Apache License
If you think the Android project android-wear-GoPro-Remote 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.pascalwelsch.goprowearremote.ui.home; // www .ja v a 2 s . c o m import com.pascalwelsch.goprowearremote.R; import android.os.Bundle; import android.support.v7.app.ActionBarActivity; public class HomeActivity extends ActionBarActivity { private static final String FRAGMENT_TAG_REMOTE = "fragment::remote"; private static final String TAG = HomeActivity.class.getSimpleName(); @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_home); if (savedInstanceState == null) { getSupportFragmentManager().beginTransaction() .replace(R.id.container, new HomeFragment(), FRAGMENT_TAG_REMOTE) .commit(); } } }