LandingActivity.java 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. /* ownCloud Android client application
  2. * Copyright (C) 2011 Bartek Przybylski
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation, either version 3 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. *
  17. */
  18. package com.owncloud.android.ui.activity;
  19. import com.actionbarsherlock.app.SherlockFragmentActivity;
  20. import com.owncloud.android.authenticator.AccountAuthenticator;
  21. import com.owncloud.android.ui.adapter.LandingScreenAdapter;
  22. import android.accounts.Account;
  23. import android.accounts.AccountManager;
  24. import android.app.AlertDialog;
  25. import android.app.Dialog;
  26. import android.content.DialogInterface;
  27. import android.content.DialogInterface.OnClickListener;
  28. import android.content.Intent;
  29. import android.os.Bundle;
  30. import android.view.View;
  31. import android.widget.AdapterView;
  32. import android.widget.AdapterView.OnItemClickListener;
  33. import android.widget.GridView;
  34. import android.widget.Toast;
  35. import com.owncloud.android.R;
  36. /**
  37. * This activity is used as a landing page when the user first opens this app.
  38. *
  39. * @author Lennart Rosam
  40. *
  41. */
  42. public class LandingActivity extends SherlockFragmentActivity implements
  43. OnClickListener, OnItemClickListener {
  44. public static final int DIALOG_SETUP_ACCOUNT = 1;
  45. @Override
  46. protected void onCreate(Bundle savedInstanceState) {
  47. super.onCreate(savedInstanceState);
  48. setContentView(R.layout.main);
  49. // Fill the grid view of the landing screen with icons
  50. GridView landingScreenItems = (GridView) findViewById(R.id.homeScreenGrid);
  51. landingScreenItems.setAdapter(new LandingScreenAdapter(this));
  52. landingScreenItems.setOnItemClickListener(this);
  53. // Check, if there are ownCloud accounts
  54. if (!accountsAreSetup()) {
  55. showDialog(DIALOG_SETUP_ACCOUNT);
  56. } else {
  57. // Start device tracking service
  58. Intent locationServiceIntent = new Intent();
  59. locationServiceIntent
  60. .setAction("com.owncloud.android.location.LocationLauncher");
  61. sendBroadcast(locationServiceIntent);
  62. }
  63. }
  64. @Override
  65. protected void onRestart() {
  66. super.onRestart();
  67. // Check, if there are ownCloud accounts
  68. if (!accountsAreSetup()) {
  69. showDialog(DIALOG_SETUP_ACCOUNT);
  70. }
  71. }
  72. @Override
  73. protected void onRestoreInstanceState(Bundle savedInstanceState) {
  74. super.onRestoreInstanceState(savedInstanceState);
  75. // Check, if there are ownCloud accounts
  76. if (!accountsAreSetup()) {
  77. showDialog(DIALOG_SETUP_ACCOUNT);
  78. }
  79. }
  80. @Override
  81. protected Dialog onCreateDialog(int id) {
  82. Dialog dialog;
  83. switch (id) {
  84. case DIALOG_SETUP_ACCOUNT:
  85. AlertDialog.Builder builder = new AlertDialog.Builder(this);
  86. builder.setTitle(R.string.main_tit_accsetup);
  87. builder.setMessage(R.string.main_wrn_accsetup);
  88. builder.setCancelable(false);
  89. builder.setPositiveButton(R.string.common_ok, this);
  90. builder.setNegativeButton(R.string.common_cancel, this);
  91. dialog = builder.create();
  92. break;
  93. default:
  94. dialog = null;
  95. }
  96. return dialog;
  97. }
  98. public void onClick(DialogInterface dialog, int which) {
  99. // In any case - we won't need it anymore
  100. dialog.dismiss();
  101. switch (which) {
  102. case DialogInterface.BUTTON_POSITIVE:
  103. Intent intent = new Intent("android.settings.ADD_ACCOUNT_SETTINGS");
  104. intent.putExtra("authorities",
  105. new String[] { AccountAuthenticator.AUTH_TOKEN_TYPE });
  106. startActivity(intent);
  107. break;
  108. case DialogInterface.BUTTON_NEGATIVE:
  109. finish();
  110. }
  111. }
  112. @Override
  113. /**
  114. * Start an activity based on the selection
  115. * the user made
  116. */
  117. public void onItemClick(AdapterView<?> parent, View view, int position,
  118. long id) {
  119. Intent intent;
  120. intent = (Intent) parent.getAdapter().getItem(position);
  121. if (intent != null) {
  122. startActivity(intent);
  123. } else {
  124. // TODO: Implement all of this and make this text go away ;-)
  125. Toast toast = Toast.makeText(this, "Not yet implemented!",
  126. Toast.LENGTH_SHORT);
  127. toast.show();
  128. }
  129. }
  130. /**
  131. * Checks, whether or not there are any ownCloud accounts setup.
  132. *
  133. * @return true, if there is at least one account.
  134. */
  135. private boolean accountsAreSetup() {
  136. AccountManager accMan = AccountManager.get(this);
  137. Account[] accounts = accMan
  138. .getAccountsByType(AccountAuthenticator.ACCOUNT_TYPE);
  139. return accounts.length > 0;
  140. }
  141. }