8.7. AddEditFragment Class

The AddEditFragment (Figs. 8.348.40) provides the interface for adding new contacts or editing existing ones.

 1   // AddEditFragment.java 2   // Allows user to add a new contact or edit an existing one 3   package com.deitel.addressbook; 4  5   import android.app.Activity; 6   import android.app.AlertDialog; 7   import android.app.Dialog; 8   import android.app.DialogFragment; 9   import android.app.Fragment;10   import android.content.Context;11   import android.os.AsyncTask;12   import android.os.Bundle;13   import android.view.LayoutInflater;14   import android.view.View;15   import android.view.View.OnClickListener;16   import android.view.ViewGroup;17   import android.view.inputmethod.InputMethodManager; ...

Get Android™ How to Program, Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.