From: masensio Date: Tue, 22 Oct 2013 08:22:18 +0000 (+0200) Subject: Merge branch 'setup_multiaccount' into setup_app_name X-Git-Tag: oc-android-1.5.5~159^2~5 X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/commitdiff_plain/017f9429c8820ae4c9cc3bf96abe21e97a5f2864?hp=--cc Merge branch 'setup_multiaccount' into setup_app_name Conflicts: src/com/owncloud/android/ui/activity/AccountSelectActivity.java --- 017f9429c8820ae4c9cc3bf96abe21e97a5f2864 diff --cc src/com/owncloud/android/ui/activity/AccountSelectActivity.java index f5d06dcb,64effc43..1b73c86e --- a/src/com/owncloud/android/ui/activity/AccountSelectActivity.java +++ b/src/com/owncloud/android/ui/activity/AccountSelectActivity.java @@@ -198,23 -197,51 +198,34 @@@ public class AccountSelectActivity exte private void populateAccountList() { AccountManager am = (AccountManager) getSystemService(ACCOUNT_SERVICE); Account accounts[] = am - .getAccountsByType(AccountAuthenticator.ACCOUNT_TYPE); - if (am.getAccountsByType(AccountAuthenticator.ACCOUNT_TYPE).length == 0) { + .getAccountsByType(MainApp.getAccountType()); - LinkedList> ll = new LinkedList>(); - for (Account a : accounts) { - HashMap h = new HashMap(); - h.put("NAME", a.name); - h.put("VER", - "ownCloud version: " - + am.getUserData(a, - AccountAuthenticator.KEY_OC_VERSION)); - ll.add(h); ++ if (am.getAccountsByType(MainApp.getAccountType()).length == 0) { + // Show create account screen if there isn't any account - am.addAccount(AccountAuthenticator.ACCOUNT_TYPE, ++ am.addAccount(MainApp.getAccountType(), + null, + null, + null, + this, + null, + null); } + else { + LinkedList> ll = new LinkedList>(); + for (Account a : accounts) { + HashMap h = new HashMap(); + h.put("NAME", a.name); + h.put("VER", + "ownCloud version: " + + am.getUserData(a, + AccountAuthenticator.KEY_OC_VERSION)); + ll.add(h); + } - setListAdapter(new AccountCheckedSimpleAdepter(this, ll, - android.R.layout.simple_list_item_single_choice, - new String[] { "NAME" }, new int[] { android.R.id.text1 })); - registerForContextMenu(getListView()); - + setListAdapter(new AccountCheckedSimpleAdepter(this, ll, + android.R.layout.simple_list_item_single_choice, + new String[] { "NAME" }, new int[] { android.R.id.text1 })); + registerForContextMenu(getListView()); + } } @Override