Android 39

초기화 값 저장/호출 SharedPreferences

개발자/Android 안드로이드개발 값 저장, 호출하는 방법 / SharedPreferences 사용 public class MainActivity extends AppCompatActivity { ... @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); setSupportActionBar(toolbar); init(); } @Override protected void onResume() { SharedPref..

ide/androidstudio 2017.01.23

android SQLite DB 열기

[안드로이드] 내부 SQLite3 데이터베이스 보기 안드로이드 SQLite DB파일 열기 View contents of database file in Android Studio SQLSCout Pull adb pull /data/data/com.android.test/databases/testdb.db ~/. Pull 권한이 안된다면 adb shell $ run-as com.domain.package $ chmod 777 databases $ chmod 777 databases/databse_name Shell adb shell sqlite3 /data/data/com.domain.test/databases/testdb.db SQLite version 3.x.xx yyyy-mm-dd H:i:s Enter..

ide/androidstudio 2017.01.17

orma "transformClasses With New Class Shrinker For Debug"

Android - transform Classes With Dex For Debug 64K 이상의 메서드로 앱 구성 android{ defaultConfig { // Enabling multidex support. multiDexEnabled true } dexOptions { javaMaxHeapSize "4g" } } dependencies { //... compile " com.android.support:multidex:1.0.0" } DEX Error Gradle sync failed: Build-in class shrinker and multidex are not supported yet. 결론 지금으로서는.... 포기가 마음편하다.

ide/androidstudio 2017.01.12

Android ORM

Summary Page 5 of the Best Android ORMs Android의 ORM - 2013.08.26 ORMLite Android ORM 소개 & ORMLite 사용하기 Using ORMLite in Android projects SugarORM [안드로이드]sugar orm 사용하기 ORMA 天下一「AndroidのORM」武道会(2014年版) 天下一「AndroidのORM」武道会(2015年版) 검증 예제코드 天下一「AndroidのORM」武道会(2015) スペックシート AndroidのORMに求めること、あるいはOrmaを開発した話

ide/androidstudio 2017.01.11

RxBrite Android-Orma

gfx/Android-Orma Android Orma入門 Orma 란? Orma는 Android용 ORM. 구현은 SQLiteDatabase 래퍼. ActiveAndroid처럼 간단하고, GreenDAO처럼 빠른 ORM을 목표로 개발. 성능은 천하 제일 "Android의 ORM"무도회 (2015 년판) 을 참조. build.app 2017.01.03일자 dependencies { annotationProcessor 'com.github.gfx.android.orma:orma-processor:4.0.2' compile 'com.github.gfx.android.orma:orma:4.0.2' } github 설명 1. 개요 @Table, @Column 및 @PrimaryKey로 주석 된 모델 클래스를 정의..

ide/androidstudio 2017.01.10
반응형