Skip to content

Instantly share code, notes, and snippets.

@simonmcd
simonmcd / layout.xml
Created December 20, 2015 17:47
Android Borderless Button Support Version
<Button
style="@style/Widget.AppCompat.Button.Borderless.Colored"
...
/>
@simonmcd
simonmcd / gist:533b44e6e3e0ac0979d9
Last active November 5, 2023 13:03
Android Grant READ_LOGS Permission
#Open a shell to the connected device.
adb shell
#Grant the READ_LOGS permission (replace package name with the app you want to have the permission).
pm grant org.jtb.alogcat android.permission.READ_LOGS
@simonmcd
simonmcd / layout.xml
Last active December 11, 2015 11:42
Android Default Clickable Background
<TextView
...
android:background="?attr/selectableItemBackground" />
@simonmcd
simonmcd / gist:7a326d2fb8f0f8346822
Created June 20, 2015 17:21
ADB WiFi Cheat Sheet
#Get the IP address of the attached device.
adb shell ip -f inet addr show wlan0
#Restart ADB in correct mode.
adb tcpip 5555
#Connect to device remotely without needing USB. Replace Xs with IP address.
adb connect xxx.xxx.xxx.xx:5555