This file contains hidden or 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
public class Constants { | |
public static final int SOUND_SELECT = R.raw.select; | |
public static final int SOUND_LOCKED = R.raw.locked; | |
public static final int SOUND_OPEN = R.raw.open; | |
public static final int SOUND_CLOSE = R.raw.close; | |
public static final void initSoundManager(Context context, SoundManager soundManager){ | |
soundManager.addSound(context, SOUND_SELECT); | |
soundManager.addSound(context, SOUND_LOCKED); |
This file contains hidden or 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
<activity | |
android:name="com.sabalicii.sliderpuzzle.ui.extra.SplashActivity" | |
android:theme="@android:style/Theme.NoTitleBar" > | |
<intent-filter> | |
<action android:name="android.intent.action.MAIN" /> | |
<category android:name="android.intent.category.LAUNCHER" /> | |
</intent-filter> | |
</activity> | |
<activity |
This file contains hidden or 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
#Hotstring ?*c | |
::^^S:: | |
SendUnicodeChar(0x015E) | |
Return | |
::^^s:: | |
SendUnicodeChar(0x015F) | |
Return | |
::^^i:: |
This file contains hidden or 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 me.frozened.ideafactory.db; | |
import android.content.Context; | |
import android.database.sqlite.SQLiteDatabase; | |
import android.database.sqlite.SQLiteDatabase.CursorFactory; | |
import android.database.sqlite.SQLiteOpenHelper; | |
public class Database extends SQLiteOpenHelper{ | |
/*--------------------------------------------------------------*/ |
This file contains hidden or 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
{ | |
"show":{ | |
"id":1, | |
"rating":"3", | |
"amazonRating":"", | |
"genre":"genre_from_db", | |
"amazonGenre":"genre_for_amazon", | |
"publicationDateStart":"date", | |
"publicationDateEnd":"date", | |
"image":"image_in_good_format", |