blob: e92210412abc53f6b1f0b935fed9d769ae0941a3 [file] [log] [blame]
/*
* Copyright (C) 2012 Google Inc.
* Licensed to The Android Open Source Project.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.mail.ui;
import android.app.Fragment;
import android.app.LoaderManager;
import android.content.CursorLoader;
import android.content.Intent;
import android.content.Loader;
import android.database.Cursor;
import android.os.Bundle;
import android.provider.Settings;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import com.android.mail.R;
import com.android.mail.providers.Account;
import com.android.mail.providers.UIProvider.SyncStatus;
public class WaitFragment extends Fragment implements View.OnClickListener,
LoaderManager.LoaderCallbacks<Cursor> {
// Keys used to pass data to {@link WaitFragment}.
private static final String ACCOUNT_KEY = "account";
private static final String COMPOSE_KEY = "isCompose";
private static final int MANUAL_SYNC_LOADER = 0;
private Account mAccount;
private LayoutInflater mInflater;
private ViewGroup mContainer;
private boolean mCompose;
public static WaitFragment newInstance(Account account) {
return newInstance(account, false);
}
public static WaitFragment newInstance(Account account, boolean compose) {
WaitFragment fragment = new WaitFragment();
final Bundle args = new Bundle();
args.putParcelable(ACCOUNT_KEY, account);
args.putBoolean(COMPOSE_KEY, compose);
fragment.setArguments(args);
return fragment;
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Bundle args = getArguments();
mAccount = (Account)args.getParcelable(ACCOUNT_KEY);
mCompose = args.getBoolean(COMPOSE_KEY, false);
}
@Override
public View onCreateView(
LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
mInflater = inflater;
mContainer = container;
return getContent();
}
private View getContent() {
final View root;
// Clear any views in the container.
mContainer.removeAllViews();
if (mAccount != null
&& (mAccount.syncStatus & SyncStatus.MANUAL_SYNC_REQUIRED)
== SyncStatus.MANUAL_SYNC_REQUIRED) {
// A manual sync is required
root = mInflater.inflate(R.layout.wait_for_manual_sync, mContainer, false);
root.findViewById(R.id.manual_sync).setOnClickListener(this);
root.findViewById(R.id.change_sync_settings).setOnClickListener(this);
} else if (mCompose) {
root = mInflater.inflate(R.layout.wait_for_compose, mContainer, false);
} else {
root = mInflater.inflate(R.layout.wait_for_sync, mContainer, false);
}
return root;
}
public void updateAccount(Account account) {
mAccount = account;
getContent();
}
Account getAccount() {
return mAccount;
}
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.change_sync_settings:
Intent intent = new Intent(Settings.ACTION_SYNC_SETTINGS);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
break;
case R.id.manual_sync:
if (mAccount != null && mAccount.manualSyncUri != null) {
getLoaderManager().initLoader(MANUAL_SYNC_LOADER, null, this);
}
break;
}
}
@Override
public Loader<Cursor> onCreateLoader(int id, Bundle bundle) {
// Tell the account to sync manually. As a side effect, updates will come into the
// controller for this fragment and update it as necessary.
return new CursorLoader(getActivity(), mAccount.manualSyncUri, null, null, null, null);
}
@Override
public void onLoadFinished(Loader<Cursor> arg0, Cursor arg1) {
// Do nothing.
}
@Override
public void onLoaderReset(Loader<Cursor> arg0) {
// Do nothing.
}
}