2 * ownCloud Android client application
5 * @author David A. Velasco
6 * Copyright (C) 2015 ownCloud Inc.
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2,
10 * as published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 package com
.owncloud
.android
.ui
.fragment
;
24 import android
.accounts
.Account
;
25 import android
.app
.Activity
;
26 import android
.app
.SearchManager
;
27 import android
.content
.Context
;
28 import android
.os
.Bundle
;
29 import android
.support
.v4
.app
.Fragment
;
30 import android
.view
.LayoutInflater
;
31 import android
.view
.View
;
32 import android
.view
.ViewGroup
;
33 import android
.view
.inputmethod
.EditorInfo
;
34 import android
.view
.inputmethod
.InputMethodManager
;
35 import android
.widget
.ListView
;
36 import android
.widget
.SearchView
;
38 import com
.owncloud
.android
.R
;
39 import com
.owncloud
.android
.datamodel
.OCFile
;
40 import com
.owncloud
.android
.lib
.common
.utils
.Log_OC
;
41 import com
.owncloud
.android
.lib
.resources
.shares
.OCShare
;
42 import com
.owncloud
.android
.ui
.activity
.ShareActivity
;
43 import com
.owncloud
.android
.ui
.adapter
.ShareUserListAdapter
;
45 import java
.util
.ArrayList
;
48 * Fragment for Searching users and groups
50 * A simple {@link Fragment} subclass.
51 * Activities that contain this fragment must implement the
52 * {@link SearchFragment.OnSearchFragmentInteractionListener} interface
53 * to handle interaction events.
54 * Use the {@link SearchFragment#newInstance} factory method to
55 * create an instance of this fragment.
57 public class SearchFragment
extends Fragment
implements ShareUserListAdapter
.ShareUserAdapterListener
{
58 private static final String TAG
= SearchFragment
.class.getSimpleName();
60 // the fragment initialization parameters
61 private static final String ARG_FILE
= "FILE";
62 private static final String ARG_ACCOUNT
= "ACCOUNT";
63 private static final String ARG_SHARES
= "SHARES";
67 private Account mAccount
;
68 private ArrayList
<OCShare
> mShares
;
69 private ShareUserListAdapter mUserGroupsAdapter
= null
;
71 private OnSearchFragmentInteractionListener mListener
;
74 * Public factory method to create new SearchFragment instances.
76 * @param fileToShare An {@link OCFile} to show in the fragment
77 * @param account An ownCloud account
79 * @return A new instance of fragment SearchFragment.
81 // TODO: Rename and change types and number of parameters
82 public static SearchFragment
newInstance(OCFile fileToShare
, Account account
, ArrayList
<OCShare
> shares
) {
83 SearchFragment fragment
= new SearchFragment();
84 Bundle args
= new Bundle();
85 args
.putParcelable(ARG_FILE
, fileToShare
);
86 args
.putParcelable(ARG_ACCOUNT
, account
);
87 args
.putParcelableArrayList(ARG_SHARES
, shares
);
88 fragment
.setArguments(args
);
92 public SearchFragment() {
93 // Required empty public constructor
97 public void onCreate(Bundle savedInstanceState
) {
98 super.onCreate(savedInstanceState
);
99 if (getArguments() != null
) {
100 mFile
= getArguments().getParcelable(ARG_FILE
);
101 mAccount
= getArguments().getParcelable(ARG_ACCOUNT
);
102 mShares
= getArguments().getParcelableArrayList(ARG_SHARES
);
108 public View
onCreateView(LayoutInflater inflater
, ViewGroup container
,
109 Bundle savedInstanceState
) {
110 // Inflate the layout for this fragment
111 View view
= inflater
.inflate(R
.layout
.search_users_groups_layout
, container
, false
);
113 // Get the SearchView and set the searchable configuration
114 SearchView searchView
= (SearchView
) view
.findViewById(R
.id
.searchView
);
115 SearchManager searchManager
= (SearchManager
) getActivity().getSystemService(Context
.SEARCH_SERVICE
);
116 searchView
.setSearchableInfo(searchManager
.getSearchableInfo(
117 getActivity().getComponentName()) // assumes parent activity is the searchable activity
119 searchView
.setIconifiedByDefault(false
); // do not iconify the widget; expand it by default
121 searchView
.setImeOptions(EditorInfo
.IME_FLAG_NO_EXTRACT_UI
); // avoid fullscreen with softkeyboard
123 searchView
.setOnQueryTextListener(new SearchView
.OnQueryTextListener() {
125 public boolean onQueryTextSubmit(String query
) {
126 Log_OC
.v(TAG
, "onQueryTextSubmit intercepted, query: " + query
);
127 return true
; // return true to prevent the query is processed to be queried;
128 // a user / group will be picked only if selected in the list of suggestions
132 public boolean onQueryTextChange(String newText
) {
133 return false
; // let it for the parent listener in the hierarchy / default behaviour
137 // Show data: Fill in list of users and groups
138 ListView usersList
= (ListView
) view
.findViewById(R
.id
.searchUsersListView
);
139 mUserGroupsAdapter
= new ShareUserListAdapter(getActivity().getApplicationContext(),
140 R
.layout
.share_user_item
, mShares
, this);
141 if (mShares
.size() > 0) {
142 usersList
.setVisibility(View
.VISIBLE
);
143 usersList
.setAdapter(mUserGroupsAdapter
);
150 * Get users and groups fromn the DB to fill in the "share with" list
152 public void refreshUsersOrGroupsListFromDB (){
153 // Get Users and Groups
154 mShares
= ((ShareActivity
) mListener
).getStorageManager().getSharesWithForAFile(mFile
.getRemotePath(),
157 // Update list of users/groups
158 updateListOfUserGroups();
161 private void updateListOfUserGroups() {
162 // Update list of users/groups
163 mUserGroupsAdapter
= new ShareUserListAdapter(getActivity().getApplicationContext(),
164 R
.layout
.share_user_item
, mShares
, this);
167 ListView usersList
= (ListView
) getView().findViewById(R
.id
.searchUsersListView
);
169 if (mShares
.size() > 0) {
170 usersList
.setVisibility(View
.VISIBLE
);
171 usersList
.setAdapter(mUserGroupsAdapter
);
174 usersList
.setVisibility(View
.GONE
);
179 public void onAttach(Activity activity
) {
180 super.onAttach(activity
);
182 mListener
= (OnSearchFragmentInteractionListener
) activity
;
183 } catch (ClassCastException e
) {
184 throw new ClassCastException(activity
.toString()
185 + " must implement OnFragmentInteractionListener");
190 public void onStart() {
192 // focus the search view and request the software keyboard be shown
193 View searchView
= getView().findViewById(R
.id
.searchView
);
194 if (searchView
.requestFocus()) {
195 InputMethodManager imm
= (InputMethodManager
)
196 getActivity().getSystemService(Context
.INPUT_METHOD_SERVICE
);
198 imm
.showSoftInput(searchView
.findFocus(), InputMethodManager
.SHOW_IMPLICIT
);
204 public void onDetach() {
210 public void unshareButtonPressed(OCShare share
) {
212 mListener
.unshareWith(share
);
213 Log_OC
.d(TAG
, "Unshare - " + share
.getSharedWithDisplayName());
217 * This interface must be implemented by activities that contain this
218 * fragment to allow an interaction in this fragment to be communicated
219 * to the activity and potentially other fragments contained in that
222 * See the Android Training lesson <a href=
223 * "http://developer.android.com/training/basics/fragments/communicating.html"
224 * >Communicating with Other Fragments</a> for more information.
226 public interface OnSearchFragmentInteractionListener
{
227 void unshareWith(OCShare share
);