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
Layered-list shape for double bordered background for Shapeable Imageview | |
-- | |
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> | |
<!-- filler --> | |
<item> | |
<shape android:shape="oval"> | |
<size | |
android:width="100dp" | |
android:height="100dp" /> |
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
ADB over WiFi: | |
1. Connect device via USB and make sure debugging is working, then run: adb tcpip 5555 adb connect <DEVICE_IP_ADDRESS>:5555 | |
2. Disconnect USB and proceed with wireless debugging. | |
3. When you're done and want to switch back to USB debugging, run: adb -s <DEVICE_IP_ADDRESS>:5555 | |
To find the IP address of your device, go to Settings > Wi-Fi > Advanced > IP Address on your device or run adb shell netcfg (oder ifconfig statt netcfg). | |
# CLI for device(s) list. | |
adb devices | |
# Connect over TCP-IP |
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
Official : https://github.com/ReactiveX/RxAndroid | |
Observables/Flowable : https://github.com/balamaci/rxjava-walkthrough#flowable | |
AsyncTask replacement | |
https://medium.com/@kurtisnusbaum/rxandroid-basics-part-1-c0d5edcf6850 | |
https://medium.com/@kurtisnusbaum/rxandroid-basics-part-2-6e877af352 | |
Additional docs: |