Webserveis
Webserveis
@pauledwardtang thanks, is what I was looking for some time ```java private byte[] stopStream = {0x03}; stream.write(stopStream); ```
I usually combine with the library [LadSir](https://github.com/KingJA/LoadSir) with `liveData` on `viewModel` send a flag control taskStatus `LOADING` `EMPTY` `ERROR` `COMPLETED` and then I show the proper view. Ttake a look...
I think that for the recyclerview it is best to implement something like this: In Recyclerview the following article can be adapted [Android: Handling Checkbox state in Recycler Views.](https://android.jlelse.eu/android-handling-checkbox-state-in-recycler-views-71b03f237022) Use...
AndroidX MaterialComponents Viewpager2 Kotlin
I transcribe this library and modify parts Change **AlertDialog** for **MaterialDialogBuilder** ```kotlin import android.content.* import android.content.SharedPreferences.Editor import android.content.pm.PackageManager import android.net.Uri import android.os.Build import android.text.TextUtils import android.util.Log import android.view.KeyEvent import androidx.annotation.StringRes...
Yes I same poblem ``` 26sp @android:color/transparent ``` Show title in black color when expanded, transparent = #00000000
Hey, I found this ```kotlin searchView.setQuery("set default text", false) ``` **false**: no submit result **true**: propagate submit result
It is a great library, I use it in all my projects and I would also like an optimized version for Kotlin
Hi, To determine if you have to expand or not , I use that code , and I was a copy paste of a set of tips, if not the...
I found this, for detect finished loading content: mMarkdownView.setWebViewClient(new WebViewClient() { public void onPageFinished(WebView view, String url) { // do your stuff here Toast.makeText(getContext(), "Finished loading", Toast.LENGTH_SHORT).show(); } });