Android Open Source - MnemR Mnem






From Project

Back to project page MnemR.

License

The source code is released under:

GNU General Public License

If you think the Android project MnemR listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/**
  * Copyright (c) 2011: mnemr.com contributors. All rights reserved.
  *//w  w w  .ja v  a 2s  .  com
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published 
  * the Free Software Foundation, either version 3 of the License, 
  * (at your option) any later version.
  *
  * program is distributed in the hope that it will be 
  * but WITHOUT ANY WARRANTY; without even the implied warranty 
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See 
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public 
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  *
  **/

package com.mnemr.provider;

import android.net.Uri;
import android.provider.BaseColumns;

public class Mnem implements BaseColumns {

  public static final String TABLE_NAME = "mnemons";
  
  public static final String SOUND = "sound";
  public static final String IMAGE = "image";
  public static final String TEXT = "text";
  public static final String RELATED_ID = "related_id";

  public static final Uri CONTENT_URI = Uri.parse("content://com.mnemr/mnemons");

  public static final String[] PROJECTION = new String[] {_ID, TEXT, IMAGE, SOUND};


}




Java Source Code List

com.mnemr.provider.MnemProvider.java
com.mnemr.provider.Mnem.java
com.mnemr.ui.CardsView.java
com.mnemr.ui.FlashcardsActivity.java
com.mnemr.ui.MnemEditorActivity.java
com.mnemr.ui.MnemListActivity.java
com.mnemr.ui.animation.Rotate3dAnimation.java
com.mnemr.ui.animation.UpAnimation.java
com.mnemr.utils.CameraButtonReceiver.java
com.mnemr.utils.MnemrUtil.java