Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 안드로이드 코딩 기초
- 안드로이드 네비게이션 메뉴
- 앱 만드는 법
- 안드로이드 튜토리얼
- Android Studio
- android tutorial
- 안드로이드
- android example
- android studio 앱 만드는 법
- 코틀린
- 안드로이드 기초
- java
- 자바 튜토리얼
- 홍드로이드 강의
- 자바
- Android Java
- 개발자
- Android
- flutter
- 안드로이드 앱 만들기
- hongdroid
- 코딩
- 개발강의
- 플러터
- 앱 만들기
- 안드로이드 서비스
- 홍드로이드
- IOS
- 안드로이드 예제
- 안드로이드 스튜디오
Archives
- Today
- Total
홍드로이드의 야매코딩
#21 안드로이드 스튜디오 로딩화면 만들기 (Github 오픈소스 다루는 법) 예제 [ 홍드로이드 ] 본문
<build.gradle (app)>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | apply plugin: 'com.android.application' android { compileSdkVersion 27 defaultConfig { applicationId "com.example.loadinganimationexample" minSdkVersion 15 targetSdkVersion 27 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'com.android.support:appcompat-v7:27.1.1' implementation 'com.android.support.constraint:constraint-layout:1.1.3' implementation 'com.github.ybq:Android-SpinKit:1.2.0' testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.2' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' } | cs |
<activity_main.xml>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:background="#ff626d" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:gravity="center" tools:context=".MainActivity"> <com.github.ybq.android.spinkit.SpinKitView xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/spin_kit" style="@style/SpinKitView.Large.CubeGrid" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" app:SpinKit_Color="#5b81fd" /> </LinearLayout> | cs |
'Android Java' 카테고리의 다른 글
#23 안드로이드 스튜디오 뒤로가기 두번눌러 앱 종료 (android onBackPressed) 예제 [ 홍드로이드 ] (0) | 2019.06.08 |
---|---|
#22 안드로이드 스튜디오 음악 재생 MP3 (서비스) 예제 [ 홍드로이드 ] (1) | 2019.06.08 |
#20 안드로이드 스튜디오 스피너 (Spinner) 드롭다운 메뉴 예제 [ 홍드로이드 ] (0) | 2019.06.08 |
#19 안드로이드 스튜디오 FCM 푸시알림 예제 [ 홍드로이드 ] (0) | 2019.06.08 |
#18 안드로이드 스튜디오 동영상 녹화 (MediaRecorder) 예제 [ 홍드로이드 ] (2) | 2019.06.02 |
Comments