Skip to content

Instantly share code, notes, and snippets.

@adnaanaeem
adnaanaeem / Open Source Apps
Last active October 7, 2019 09:58
list of open source apps
https://blog.aritraroy.in/20-awesome-open-source-android-apps-to-boost-your-development-skills-b62832cf0fa4
@adnaanaeem
adnaanaeem / shadow.xml
Created September 26, 2019 13:29 — forked from lecho/shadow.xml
Android shadow drawable xml.
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<!-- Drop Shadow Stack -->
<item>
<shape>
<padding
android:bottom="1dp"
android:left="1dp"
android:right="1dp"
@adnaanaeem
adnaanaeem / Round_white_button_drop_shadow.xml
Created September 25, 2019 05:00 — forked from arvkmr/Round_white_button_drop_shadow.xml
Android round white button with drop shadow
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<layer-list>
<item>
<shape android:shape="oval">
<gradient
android:startColor="#FF000000"
android:endColor="#00000000"
@adnaanaeem
adnaanaeem / Round_white_button_drop_shadow.xml
Created September 25, 2019 05:00 — forked from arvkmr/Round_white_button_drop_shadow.xml
Android round white button with drop shadow
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<layer-list>
<item>
<shape android:shape="oval">
<gradient
android:startColor="#FF000000"
android:endColor="#00000000"
@adnaanaeem
adnaanaeem / AndroidManifest.xml
Created September 24, 2019 07:25 — forked from sivabe35/AndroidManifest.xml
Job Scheduler Code sample
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.josiassena.jobscheduler">
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"