View Lets MVVM activity_main.xml
This file contains 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
<layout> | |
<data> | |
<variable | |
name="viewModel" | |
type="com.thebotbox.letsmvvm.presentation.viewmodel.MainViewModel" /> | |
</data> | |
<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" |
View Lets MVVM MainActivity
This file contains 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
class MainActivity : AppCompatActivity() { | |
private val mBinding by viewBinding(ActivityMainBinding::inflate) | |
private val mViewModel by viewModel<MainViewModel>() | |
override fun onCreate(savedInstanceState: Bundle?) { | |
super.onCreate(savedInstanceState) | |
setContentView(mBinding.root) | |
mBinding.viewModel = mViewModel | |
mViewModel.fetchRandomQuoteLiveData.observe(this, Observer { // observing response from viewmodel |
View Lets MVVM's ViewModel
This file contains 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
class MainViewModel( | |
private val iRepository: IRepository | |
) : ViewModel() { | |
private val _errorLiveData: MutableLiveData<String> = MutableLiveData() | |
val errorLiveData: LiveData<String> | |
get() = _errorLiveData | |
private val _fetchRandomQuoteLiveData: MutableLiveData<RandomQuoteResponse> = MutableLiveData() | |
val fetchRandomQuoteLiveData: LiveData<RandomQuoteResponse> |
View ofType extension
This file contains 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
inline fun <reified T> Any.ofType(block: (T) -> Unit) { | |
if (this is T) { | |
block(this as T) | |
} | |
} |
View requestPermissions
This file contains 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
fun Activity.requestPermissions(vararg permissions: String, @IntRange(from = 0) requestCode: Int) = | |
ActivityCompat.requestPermissions(this, permissions, requestCode) |
View hasPermissions
This file contains 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
fun AppCompatActivity.hasPermissions(vararg permissions: String): Boolean { | |
return if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) | |
permissions.all { singlePermission -> | |
applicationContext.checkSelfPermission(singlePermission) == PackageManager.PERMISSION_GRANTED | |
} | |
else true |
View when exhaustive
This file contains 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
val <T> T.makeExhaustive: T | |
get() = this |
View EditText onDone
This file contains 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
fun EditText.onDone(callback: (String) -> Unit) { | |
setOnEditorActionListener { _, actionId, _ -> | |
if (actionId == EditorInfo.IME_ACTION_DONE) { | |
callback.invoke(text.toString()) | |
true | |
} | |
false | |
} | |
} |
View Edittext AddTextChangeListener
This file contains 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
fun EditText.onTextChanged(listener: (String) -> Unit) { | |
this.addTextChangedListener(object : TextWatcher { | |
override fun afterTextChanged(s: Editable?) { listener(s.toString()) } | |
override fun beforeTextChanged(s: CharSequence?, start: Int, count: Int, after: Int) {} | |
override fun onTextChanged(s: CharSequence?, start: Int, before: Int, count: Int) {} | |
}) | |
} |
View try and catch extension
This file contains 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
inline fun <reified E : Throwable> tryAndCatch(blockTry: () -> Unit, blockCatch: (E) -> Unit) { | |
try { | |
blockTry() | |
} catch (e: Exception) { | |
blockCatch(e as E) | |
} | |
} |
NewerOlder