FileList.java 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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 eu.alefzero.owncloud.ui.fragment;
  19. import android.accounts.Account;
  20. import android.accounts.AccountManager;
  21. import android.app.FragmentManager;
  22. import android.app.Service;
  23. import android.content.Intent;
  24. import android.database.Cursor;
  25. import android.net.Uri;
  26. import android.os.Bundle;
  27. import android.support.v4.app.FragmentTransaction;
  28. import android.view.LayoutInflater;
  29. import android.view.View;
  30. import android.view.ViewGroup;
  31. import android.widget.AdapterView;
  32. import android.widget.TextView;
  33. import eu.alefzero.owncloud.R;
  34. import eu.alefzero.owncloud.authenticator.AccountAuthenticator;
  35. import eu.alefzero.owncloud.db.ProviderMeta.ProviderTableMeta;
  36. import eu.alefzero.owncloud.ui.FragmentListView;
  37. import eu.alefzero.owncloud.ui.activity.FileDetailActivity;
  38. import eu.alefzero.owncloud.ui.activity.FileDisplayActivity;
  39. import eu.alefzero.owncloud.ui.adapter.FileListListAdapter;
  40. /**
  41. * A Fragment that lists all files and folders in a given path.
  42. * @author Bartek Przybylski
  43. *
  44. */
  45. public class FileList extends FragmentListView {
  46. private Cursor mCursor;
  47. private Account mAccount;
  48. private AccountManager mAccountManager;
  49. private String mDirName;
  50. private String mParentId;
  51. public FileList() {
  52. mDirName = null;
  53. mParentId = null;
  54. }
  55. public FileList(String dirName, String parentId) {
  56. mDirName = dirName;
  57. mParentId = parentId;
  58. }
  59. @Override
  60. public void onCreate(Bundle savedInstanceState) {
  61. super.onCreate(savedInstanceState);
  62. mAccountManager = (AccountManager)getActivity().getSystemService(Service.ACCOUNT_SERVICE);
  63. mAccount = mAccountManager.getAccountsByType(AccountAuthenticator.ACCOUNT_TYPE)[0];
  64. populateFileList();
  65. }
  66. @Override
  67. public void onItemClick(AdapterView<?> l, View v, int position, long id) {
  68. FileDetail fd = (FileDetail) getFragmentManager().findFragmentById(R.id.fileDetail);
  69. if (!mCursor.moveToPosition(position)) {
  70. throw new IndexOutOfBoundsException("Incorrect item selected");
  71. }
  72. if (mCursor.getString(mCursor.getColumnIndex(ProviderTableMeta.FILE_CONTENT_TYPE)).equals("DIR")) {
  73. String id_ = mCursor.getString(mCursor.getColumnIndex(ProviderTableMeta._ID));
  74. String dirname = mCursor.getString(mCursor.getColumnIndex(ProviderTableMeta.FILE_NAME));
  75. FileList fl = new FileList(dirname, id_);
  76. ((FileDisplayActivity)getActivity()).pushPath(dirname);
  77. FragmentTransaction ft = getSupportFragmentManager().beginTransaction();
  78. ft.addToBackStack(null);
  79. ft.replace(R.id.file_list_container, fl);
  80. ft.commit();
  81. getSupportFragmentManager().executePendingTransactions();
  82. return;
  83. }
  84. Intent i = new Intent(getActivity(), FileDetailActivity.class);
  85. i.putExtra("FILE_NAME", ((TextView)v.findViewById(R.id.Filename)).getText());
  86. if (fd != null) {
  87. fd.setStuff(i);
  88. } else {
  89. startActivity(i);
  90. }
  91. }
  92. private void populateFileList() {
  93. if (mParentId == null || mDirName == null) {
  94. mCursor = getActivity().getContentResolver().query(ProviderTableMeta.CONTENT_URI,
  95. null,
  96. ProviderTableMeta.FILE_ACCOUNT_OWNER+"=?",
  97. new String[]{mAccount.name},
  98. null);
  99. } else {
  100. mCursor = getActivity().managedQuery(Uri.withAppendedPath(ProviderTableMeta.CONTENT_URI_DIR, mParentId),
  101. null,
  102. ProviderTableMeta.FILE_ACCOUNT_OWNER + "=?",
  103. new String[]{mAccount.name}, null);
  104. }
  105. setListAdapter(new FileListListAdapter(mCursor, getActivity()));
  106. }
  107. }