Advertisement
minafaw3

MainActivity AidMaid

Jan 28th, 2016
302
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.53 KB | None | 0 0
  1. package org.aidmaid;
  2.  
  3. import android.app.ActivityManager;
  4. import android.content.Context;
  5. import android.content.Intent;
  6. import android.net.Uri;
  7. import android.os.Bundle;
  8. import android.support.design.widget.FloatingActionButton;
  9. import android.support.v4.app.Fragment;
  10. import android.support.v4.app.FragmentManager;
  11. import android.support.v4.app.FragmentPagerAdapter;
  12. import android.support.v4.view.ViewPager;
  13. import android.support.v7.app.AppCompatActivity;
  14. import android.view.View;
  15.  
  16. import com.facebook.CallbackManager;
  17. import com.facebook.FacebookSdk;
  18.  
  19. import org.aidmaid.alarm.AlarmService;
  20. import org.aidmaid.broadcast.Red5TranslationViewActivity;
  21. import org.aidmaid.broadcast.RemoteVideoStreamConfig;
  22. import org.aidmaid.discover.DiscoverFragment;
  23. import org.aidmaid.main.SliderFragment;
  24. import org.aidmaid.pageIndicator.CirclePageIndicator;
  25. import org.aidmaid.settings.ApplicationSettings;
  26. import org.aidmaid.settings.SettingsActivity;
  27. import org.aidmaid.settings.SettingsFragment;
  28. import org.aidmaid.shaking.ShakeDetectionService;
  29. import org.aidmaid.wear.WearListenerService;
  30.  
  31. import java.util.Locale;
  32.  
  33. public class MainActivity extends AppCompatActivity {
  34.  
  35. /**
  36. * The {@link android.support.v4.view.PagerAdapter} that will provide
  37. * fragments for each of the sections. We use a
  38. * {@link FragmentPagerAdapter} derivative, which will keep every
  39. * loaded fragment in memory. If this becomes too memory intensive, it
  40. * may be best to switch to a
  41. * {@link android.support.v4.app.FragmentStatePagerAdapter}.
  42. */
  43. SectionsPagerAdapter mSectionsPagerAdapter;
  44.  
  45. /**
  46. * The {@link ViewPager} that will host the section contents.
  47. */
  48. ViewPager mViewPager;
  49. //MaterialTabHost tabHost;
  50. private int tabId;
  51.  
  52. @Override
  53. protected void onCreate(Bundle savedInstanceState) {
  54.  
  55. super.onCreate(savedInstanceState);
  56. FacebookSdk.sdkInitialize(getApplicationContext());
  57. setContentView(R.layout.activity_main);
  58.  
  59. // Create the adapter that will return a fragment for each of the three
  60. // primary sections of the activity.
  61. mSectionsPagerAdapter = new SectionsPagerAdapter(getSupportFragmentManager());
  62.  
  63. // Set up the ViewPager with the sections adapter.
  64. mViewPager = (ViewPager) findViewById(R.id.pager);
  65. mViewPager.setAdapter(mSectionsPagerAdapter);
  66.  
  67. //PagerSlidingTabStrip tabs = (PagerSlidingTabStrip) findViewById(R.id.tabs);
  68. //tabs.setViewPager(mViewPager);
  69. //tabs.setIndicatorColor(0xFFFFFFFF);
  70. //tabs.setUnderlineColor(0xFFFFA0A0);
  71. //tabs.setBackgroundColor(0xFFd0021b);
  72. //tabs.setTextColor(0xFFFFFFFF);
  73. //tabs.setIndicatorHeight(6);
  74.  
  75. CirclePageIndicator circlePageIndicator = (CirclePageIndicator) findViewById(R.id.circlePageIndicator);
  76. circlePageIndicator.setViewPager(mViewPager);
  77. circlePageIndicator.setCurrentItem(0);
  78. circlePageIndicator.setOnPageChangeListener(new ViewPager.OnPageChangeListener() {
  79. @Override
  80. public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {
  81.  
  82. }
  83.  
  84. @Override
  85. public void onPageSelected(int position) {
  86.  
  87. }
  88.  
  89. @Override
  90. public void onPageScrollStateChanged(int state) {
  91.  
  92. }
  93. });
  94.  
  95.  
  96.  
  97. // tabHost = (MaterialTabHost) this.findViewById(R.id.materialTabHost);
  98. // mViewPager.setOnPageChangeListener(new ViewPager.SimpleOnPageChangeListener() {
  99. // @Override
  100. // public void onPageSelected(int position) {
  101. // // when user do a swipe the selected tab change
  102. // tabHost.setSelectedNavigationItem(position);
  103. // }
  104. // });
  105. //
  106. // for (int i = 0; i < mSectionsPagerAdapter.getCount(); i++) {
  107. // final int pos = i;
  108. // tabHost.addTab(
  109. // tabHost.newTab()
  110. // .setIcon(getIcon(pos))
  111. // .setSelectedIcon(getSelectedIcon(pos))
  112. // .setTabListener(new MaterialTabListener() {
  113. // @Override
  114. // public void onTabSelected(MaterialTab materialTab) {
  115. // mViewPager.setCurrentItem(pos);
  116. // }
  117. //
  118. // @Override
  119. // public void onTabReselected(MaterialTab materialTab) {
  120. //
  121. // }
  122. //
  123. // @Override
  124. // public void onTabUnselected(MaterialTab materialTab) {
  125. //
  126. // }
  127. // })
  128. // .setText(getTabText(pos))
  129. // );
  130. // }
  131.  
  132.  
  133. initialize();
  134. }
  135.  
  136. // private String getTabText(int tabPosition)
  137. // {
  138. // switch (tabPosition){
  139. // case 0:
  140. // return "Alerts";
  141. // case 1:
  142. // return "Network";
  143. // case 2:
  144. // return "Panic";
  145. // case 3:
  146. // return "Discover";
  147. // case 4:
  148. // return "Settings";
  149. // }
  150. //
  151. // return "";
  152. // }
  153.  
  154. // private Drawable getIcon(int tabId)
  155. // {
  156. // switch (tabId){
  157. // case 0:
  158. // return getResources().getDrawable(R.drawable.alerts_tab_icon);
  159. // case 1:
  160. // return getResources().getDrawable(R.drawable.network_tab_icon);
  161. // case 2:
  162. // return getResources().getDrawable(R.drawable.panic_tab_icon);
  163. // case 3:
  164. // return getResources().getDrawable(R.drawable.discover_tab_icon);
  165. // case 4:
  166. // return getResources().getDrawable(R.drawable.settings_tab_icon);
  167. // }
  168. //
  169. // return null;
  170. // }
  171. //
  172. // private Drawable getSelectedIcon(int tabId)
  173. // {
  174. // this.tabId = tabId;
  175. // switch (tabId){
  176. // case 0:
  177. // return getResources().getDrawable(R.drawable.alerts_red_tab_icon);
  178. // case 1:
  179. // return getResources().getDrawable(R.drawable.network_red_tab_icon);
  180. // case 2:
  181. // return getResources().getDrawable(R.drawable.panic_red_tab_icon);
  182. // case 3:
  183. // return getResources().getDrawable(R.drawable.discover_red_tab_icon);
  184. // case 4:
  185. // return getResources().getDrawable(R.drawable.settings_red_tab_icon);
  186. // }
  187. //
  188. // return null;
  189. // }
  190.  
  191. @Override
  192. public void onActivityResult(final int requestCode, final int resultCode, final Intent data) {
  193. super.onActivityResult(requestCode, resultCode, data);
  194. CallbackManager callbackManager = CallbackManager.Factory.create();
  195. callbackManager.onActivityResult(requestCode, resultCode, data);
  196. if(FacebookSdk.isFacebookRequestCode(requestCode) && mViewPager.getCurrentItem() == 0)
  197. {
  198. Intent intent = new Intent(Intent.ACTION_DIAL);
  199. intent.setData(Uri.parse("tel:" + ApplicationSettings.getPolicePhone(getApplicationContext())));
  200. startActivity(intent);
  201. }
  202.  
  203. }
  204.  
  205. private void initialize()
  206. {
  207. FloatingActionButton settingsButton = (FloatingActionButton) findViewById(R.id.settingsImageButton);
  208. settingsButton.setOnClickListener(new View.OnClickListener() {
  209. public void onClick(View v) {
  210. Intent intent = new Intent(MainActivity.this, SettingsActivity.class);
  211. startActivity(intent);
  212. }
  213. });
  214.  
  215. Intent shakeDetectionIntent = new Intent(this, ShakeDetectionService.class);
  216. Intent alarmServiceIntent = new Intent(this, AlarmService.class);
  217. Intent wearListenerServiceIntent = new Intent(this, WearListenerService.class);
  218.  
  219. boolean hasStartedShakeDetection = false;
  220. boolean hasStartedAlarmService= false;
  221. boolean hasStartedWearService= false;
  222.  
  223. ActivityManager manager = (ActivityManager) this.getSystemService(Context.ACTIVITY_SERVICE);
  224. for (ActivityManager.RunningServiceInfo service : manager.getRunningServices(Integer.MAX_VALUE)) {
  225. if (ShakeDetectionService.class.getName().equals(service.service.getClassName())) {
  226. hasStartedShakeDetection = true;
  227. }
  228. if (AlarmService.class.getName().equals(service.service.getClassName())) {
  229. hasStartedAlarmService = true;
  230. }
  231.  
  232. if (WearListenerService.class.getName().equals(service.service.getClassName())) {
  233. hasStartedWearService = true;
  234. }
  235. }
  236.  
  237. if(!hasStartedAlarmService)
  238. startService(alarmServiceIntent);
  239.  
  240. if(!hasStartedShakeDetection)
  241. startService(shakeDetectionIntent);
  242.  
  243. if(!hasStartedWearService)
  244. startService(wearListenerServiceIntent);
  245.  
  246. Uri data = getIntent().getData();
  247.  
  248. mViewPager.setCurrentItem(2);
  249. if(data != null && data.getScheme().equals("aidmaidlogin")){
  250. mViewPager.setCurrentItem(4);
  251. }
  252.  
  253. if(data != null && data.getScheme().equals("aidmaid")){
  254. Intent startBroadcast = new Intent(this, Red5TranslationViewActivity.class);
  255. startBroadcast.putExtra(RemoteVideoStreamConfig.VIDEO_STREAM_PARAMETER_NAME, data.getHost());
  256. startActivity(startBroadcast);
  257. }
  258. }
  259.  
  260. /**
  261. * A {@link FragmentPagerAdapter} that returns a fragment corresponding to
  262. * one of the sections/tabs/pages.
  263. */
  264. public class SectionsPagerAdapter extends FragmentPagerAdapter {
  265.  
  266. public SectionsPagerAdapter(FragmentManager fm) {
  267. super(fm);
  268. }
  269.  
  270. @Override
  271. public Fragment getItem(int position) {
  272.  
  273. if(position == 1)
  274. return DiscoverFragment.newInstance();
  275. if(position == 2)
  276. return PanicButtonFragment.newInstance();
  277. if(position == 3)
  278. return CrimesMapFragment.newInstance();
  279. if(position == 4)
  280. return SettingsFragment.newInstance();
  281.  
  282.  
  283. // getItem is called to instantiate the fragment for the given page.
  284. // Return a PlaceholderFragment (defined as a static inner class below).
  285. return SliderFragment.newInstance();
  286.  
  287. }
  288.  
  289. @Override
  290. public int getCount() {
  291. // Show 3 total pages.
  292. return 5;
  293. }
  294.  
  295. @Override
  296. public CharSequence getPageTitle(int position) {
  297. Locale l = Locale.getDefault();
  298. switch (position) {
  299. case 0:
  300. return getString(R.string.title_section3).toUpperCase(l);
  301. case 1:
  302. return getString(R.string.title_section1).toUpperCase(l);
  303. case 2:
  304. return getString(R.string.title_section2).toUpperCase(l);
  305. case 3:
  306. return getString(R.string.title_section4).toUpperCase(l);
  307. case 4:
  308. return getString(R.string.title_section5).toUpperCase(l);
  309. }
  310. return null;
  311. }
  312. }
  313. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement