Skip to content

Instantly share code, notes, and snippets.

View gohilbhagirath90's full-sized avatar

Bhagirathsinh Gohil gohilbhagirath90

  • eInfochips
  • Ahmedabad, Gujarat, India
View GitHub Profile
@gohilbhagirath90
gohilbhagirath90 / scrollbar.xml
Last active September 17, 2019 10:43
change color of scrollbar in scrollview android
Create a scroll bar in drawable(scrollbar.xml) using this
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:angle="45"
android:centerColor="#669C79E7"
android:endColor="#66C0C0C0"
android:startColor="#669C70E2" />
# Built application files
/*/build/
# Crashlytics configuations
com_crashlytics_export_strings.xml
# Local configuration file (sdk path, etc)
local.properties
# Gradle generated files
@gohilbhagirath90
gohilbhagirath90 / gist:d51e2268d6ab97527c27
Created March 10, 2015 05:03
support for all android screen
<supports-screens
android:resizeable="true"
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:anyDensity="true"
/>
@gohilbhagirath90
gohilbhagirath90 / gist:0fe33ad78e848d4c295c
Created September 22, 2014 13:14
jni shared library
gcc -I/opt/jdk6/jdk1.6.0_45/include -I/opt/jdk6/jdk1.6.0_45/include/linux -o libhello.so -shared hello.c
@gohilbhagirath90
gohilbhagirath90 / gist:cbf865df3316040a3c64
Last active August 29, 2015 14:05
Broadcast Receiver for start android app after booting
Well you can have a BroadcastReceiver declared in your manifest to receive the BOOT_COMPLETED broadcast and then respond to that in your BroadcastReceiver and do what you like.
<receiver android:name="MyBootReceiver"
android:enabled="true"
android:exported="true"
android:label="BootReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"></action>
</intent-filter>