source: other-projects/diy-streetview-pano-capture/trunk/Client/src/com/theboboon/diy/streetview/remote/control/SettingsActivity.java@ 26882

Last change on this file since 26882 was 26882, checked in by davidb, 11 years ago

Joshua Hollands software for operation with the diy camera built for Smoke and Mirrors 2012

File size: 454 bytes
Line 
1package com.theboboon.diy.streetview.remote.control;
2
3import android.app.Activity;
4import android.os.Bundle;
5
6public class SettingsActivity extends Activity {
7
8 @Override
9 protected void onCreate(Bundle savedInstanceState) {
10 super.onCreate(savedInstanceState);
11 setContentView(R.layout.activity_settings);
12 getFragmentManager().beginTransaction()
13 .replace(android.R.id.content, new SettingsFrag())
14 .commit();
15
16 }
17
18}
Note: See TracBrowser for help on using the repository browser.