This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package amigosecreto.hp.example.com; | |
import java.text.NumberFormat; | |
import android.app.Activity; | |
import android.os.Bundle; | |
import android.view.Menu; | |
import android.view.MenuItem; | |
import android.widget.EditText; | |
import amigosecreto.hp.example.com.R; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package amigosecreto.hp.example.com.db; | |
/** | |
* Created by HP on 17/06/2015. | |
*/ | |
import android.content.Context; | |
import android.database.sqlite.SQLiteDatabase; | |
import android.database.sqlite.SQLiteOpenHelper; | |
import android.util.Log; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package amigosecreto.hp.example.com.db; | |
/** | |
* Created by HP on 17/06/2015. | |
*/ | |
import java.util.ArrayList; | |
import java.util.List; | |
import android.content.ContentValues; | |
import android.content.Context; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package amigosecreto.hp.example.com.db; | |
/** | |
* Created by HP on 17/06/2015. | |
*/ | |
import android.os.Parcel; | |
import android.os.Parcelable; | |
public class Desejo implements Parcelable, Comparable<Desejo>{ |