package net.vocollab.kabowie.activities;
import net.vocollab.kabowie.R;
import android.os.Bundle;
/**
* PracticeVocabularyActivity where the user is shown a word and just presses a button to show the translation for
* verification.
*
* @author armin
*
*/
public class FlipCardActivity extends PracticeVocabularyActivity {
/** Called when the activity is first created. */
@Override
protected void onCreate(Bundle savedInstanceState) {
setContentView(R.layout.flip_card);
super.onCreate(savedInstanceState);
}
}
|