/* * This file is part of Find Your Friend. * * Find Your Friend is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Find Your Friend is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with Find Your Friend. If not, see <http://www.gnu.org/licenses/>. */ package com.sgu.findyourfriend.screen; import android.app.Activity; import android.app.Dialog; import android.content.Context; import android.os.AsyncTask; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.View.OnClickListener; import android.view.ViewGroup; import android.widget.Button; import android.widget.EditText; import com.sgu.findyourfriend.R; import com.sgu.findyourfriend.net.PostData; import com.sgu.findyourfriend.utils.Utility; public class ForgetPasswordFragment extends BaseFragment { private EditText phone; private Button find; private Context ctx; private ProgressDialogCustom progress; @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View rootView = inflater.inflate(R.layout.dialog_forget_password, container, false); phone=(EditText)rootView.findViewById(R.id.EditText_ForgetPassword_Phone); find=(Button)rootView.findViewById(R.id.Button_ForgetPassword_FindYourPass); find.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { final Dialog dialog = new Dialog(getActivity()); boolean isEmpty = false; if (phone.getText().toString().trim().length() > 0) { phone.setBackgroundDrawable(getResources() .getDrawable(R.drawable.edit_text)); } else { phone.setBackgroundDrawable(getResources() .getDrawable(R.drawable.edit_text_wrong)); isEmpty = true; } if (isEmpty) { Utility.showDialog(Utility.ERROR, dialog, "Thiếu thông tin", "Nhập các thông tin yêu cầu.", "Đóng", new OnClickListener() { @Override public void onClick(View arg0) { dialog.dismiss(); } }); return; } (new AsyncTask<Void, Void, Boolean>() { @Override protected void onPreExecute() { progress = new ProgressDialogCustom(ctx); progress.show(); } @Override protected Boolean doInBackground(Void... params) { return PostData.userForgetPassword(getActivity(), phone.getText().toString().trim()); } @Override protected void onPostExecute(Boolean result) { progress.dismiss(); if (result) { Utility.showDialog(Utility.CONFIRM, dialog, "Thông báo", "Hệ thống sẽ gửi email đến bạn trong giây lát.", "Đóng", new OnClickListener() { @Override public void onClick(View arg0) { dialog.dismiss(); } }); replaceFragment(new LoginFragment(), false); } else { Utility.showDialog(Utility.ERROR, dialog, "Lỗi", "Số điện thoại không đúng.", "Đóng", new OnClickListener() { @Override public void onClick(View arg0) { dialog.dismiss(); } }); } } }).execute(); } }); return rootView; } @Override public void onAttach(Activity activity) { super.onAttach(activity); this.ctx = activity; } }