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
/** | |
* Created by ${USER} on ${DAY},${MONTH_NAME_FULL},${YEAR} | |
*/ | |
/** | |
* Created by Gideon Tobing on ${DAY},${MONTH_NAME_FULL},${YEAR} | |
* - | |
* Brisbane, Australia. | |
*/ |
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
/** | |
* @author Gideon | |
* | |
* @see "https://medium.com/androiddevelopers/spantastic-text-styling-with-spans-17b0c16b4568" | |
* @see "https://stackoverflow.com/a/65000483" | |
* @see SpanType -> enum type of Span | |
* | |
* | |
* @param highlightColor -> TIDAK WAJIB, keyword akan di rubah ke warna ini | |
* @param message - > WAJIB Di ISI, merupakan kalimat yang akan di tampilkan di text |
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 com.don.myapplication; | |
import androidx.appcompat.app.AppCompatActivity; | |
import android.os.Bundle; | |
import android.util.Log; | |
import android.widget.Button; | |
import com.jakewharton.rxbinding3.view.RxView; |
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
klo mau, ini ada bbrp link course kotlin gratis, termasuk salah satunya dari udacity. | |
bagus utk referensi bljr. | |
Berbagai kursus gratis belajar pengembangan Android dengan Kotlin. | |
Developing Android Apps with Kotlin | |
by Google (Udacity) : https://s.id/8NSGQ | |
Advanced Android with Kotlin |
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
<?xml version="1.0" encoding="utf-8"?> | |
<androidx.constraintlayout.widget.ConstraintLayout | |
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:orientation="vertical" | |
android:layout_width="match_parent" | |
android:layout_height="259dp"> | |
<androidx.appcompat.widget.AppCompatImageView |
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 static final String EXTRA_ID = "PERSON_ID"; | |
public static final String EXTRA_NAME = "PERSON_NAME"; | |
public static final String EXTRA_EMAIL = "PERSON_EMAIL"; | |
public static final String EXTRA_IMAGE = "PERSON_IMAGE"; | |
ApiClient apiClient; | |
/****FILL THIS WITH YOUR INFORMATION*********/ | |
//This is the public api key of our application |
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 don.ctrl.wallpaperproject.ui.product; | |
import android.content.Intent; | |
import android.content.SharedPreferences; | |
import android.media.Image; | |
import android.preference.PreferenceManager; | |
import android.support.v4.view.ViewPager; | |
import android.os.Bundle; | |
import android.util.Log; | |
import android.view.MenuItem; |