20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2021 Qandeel Abbassi
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
DROPSY
6 |
7 | Simple dropdown/spinner view for Android
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | ## Gradle
22 | Add it in your top-level `build.gradle`:
23 | ```
24 | allprojects {
25 | repositories {
26 | ...
27 | maven { url 'https://jitpack.io' }
28 | }
29 | }
30 | ```
31 | Add the dependency to app-level `build.gradle`:
32 | ```
33 | implementation 'com.github.qandeelabbassi:Dropsy:1.1'
34 | ```
35 |
36 | ## Usage
37 | :point_right: Add the Dropsy's `DropDownView` view in XML layout like this:
38 | ```xml
39 |
49 | ```
50 | :point_right: Set a listener on the `DropDownView` in your Activity/Fragment like this:
51 | ```kotlin
52 | class MainActivity : AppCompatActivity() {
53 | override fun onCreate(savedInstanceState: Bundle?) {
54 | super.onCreate(savedInstanceState)
55 | setContentView(R.layout.activity_main)
56 | // set listener
57 | dropdown_fruits.setItemClickListener { i, item ->
58 | Toast.makeText(this, "${item.text} clicked at index $i", Toast.LENGTH_SHORT).show()
59 | }
60 | }
61 | }
62 | ```
63 | :point_right: To programmatically show/hide the dropdown you can use `showDropdown()`/`hideDropdown()`:
64 | ```kotlin
65 | btn_show.setOnClickListener { dropdown_fruits.showDropdown() }
66 | btn_hide.setOnClickListener { dropdown_fruits.hideDropdown() }
67 | ```
68 |
69 | ## Sample App Screenshot
70 |
71 |
72 |
--------------------------------------------------------------------------------
/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
--------------------------------------------------------------------------------
/app/build.gradle:
--------------------------------------------------------------------------------
1 | plugins {
2 | id 'com.android.application'
3 | id 'kotlin-android'
4 | id 'kotlin-android-extensions'
5 | id 'kotlin-kapt'
6 | }
7 |
8 | android {
9 | compileSdkVersion 30
10 | buildToolsVersion "30.0.2"
11 |
12 | defaultConfig {
13 | applicationId "com.qandeelabbassi.dropsydemo"
14 | minSdkVersion 19
15 | targetSdkVersion 30
16 | versionCode 2
17 | versionName "1.1"
18 |
19 | testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
20 | }
21 |
22 | buildTypes {
23 | release {
24 | minifyEnabled false
25 | proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
26 | }
27 | }
28 | compileOptions {
29 | sourceCompatibility JavaVersion.VERSION_1_8
30 | targetCompatibility JavaVersion.VERSION_1_8
31 | }
32 | kotlinOptions {
33 | jvmTarget = '1.8'
34 | }
35 | }
36 |
37 | dependencies {
38 | implementation project(path: ':dropsy')
39 | implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
40 | implementation 'androidx.core:core-ktx:1.3.2'
41 | implementation 'androidx.appcompat:appcompat:1.2.0'
42 | implementation 'com.google.android.material:material:1.2.1'
43 | implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
44 | testImplementation 'junit:junit:4.13.1'
45 | androidTestImplementation 'androidx.test.ext:junit:1.1.2'
46 | androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
47 | }
--------------------------------------------------------------------------------
/app/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # You can control the set of applied configuration files using the
3 | # proguardFiles setting in build.gradle.
4 | #
5 | # For more details, see
6 | # http://developer.android.com/guide/developing/tools/proguard.html
7 |
8 | # If your project uses WebView with JS, uncomment the following
9 | # and specify the fully qualified class name to the JavaScript interface
10 | # class:
11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
12 | # public *;
13 | #}
14 |
15 | # Uncomment this to preserve the line number information for
16 | # debugging stack traces.
17 | #-keepattributes SourceFile,LineNumberTable
18 |
19 | # If you keep the line number information, uncomment this to
20 | # hide the original source file name.
21 | #-renamesourcefileattribute SourceFile
--------------------------------------------------------------------------------
/app/src/androidTest/java/com/qandeelabbassi/dropsydemo/ExampleInstrumentedTest.kt:
--------------------------------------------------------------------------------
1 | package com.qandeelabbassi.dropsydemo
2 |
3 | import androidx.test.platform.app.InstrumentationRegistry
4 | import androidx.test.ext.junit.runners.AndroidJUnit4
5 |
6 | import org.junit.Test
7 | import org.junit.runner.RunWith
8 |
9 | import org.junit.Assert.*
10 |
11 | /**
12 | * Instrumented test, which will execute on an Android device.
13 | *
14 | * See [testing documentation](http://d.android.com/tools/testing).
15 | */
16 | @RunWith(AndroidJUnit4::class)
17 | class ExampleInstrumentedTest {
18 | @Test
19 | fun useAppContext() {
20 | // Context of the app under test.
21 | val appContext = InstrumentationRegistry.getInstrumentation().targetContext
22 | assertEquals("com.qandeelabbassi.dropsydemo", appContext.packageName)
23 | }
24 | }
--------------------------------------------------------------------------------
/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/app/src/main/ic_launcher-playstore.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qandeelabbassi/Dropsy/fd54935e3998fcdef931c51916e604ae566258aa/app/src/main/ic_launcher-playstore.png
--------------------------------------------------------------------------------
/app/src/main/java/com/qandeelabbassi/dropsydemo/MainActivity.kt:
--------------------------------------------------------------------------------
1 | package com.qandeelabbassi.dropsydemo
2 |
3 | import androidx.appcompat.app.AppCompatActivity
4 | import android.os.Bundle
5 | import android.widget.Toast
6 | import kotlinx.android.synthetic.main.activity_main.*
7 |
8 | class MainActivity : AppCompatActivity() {
9 |
10 | override fun onCreate(savedInstanceState: Bundle?) {
11 | super.onCreate(savedInstanceState)
12 | setContentView(R.layout.activity_main)
13 | // set listener
14 | dropdown_fruits.setItemClickListener { i, item ->
15 | Toast.makeText(this, "${item.text} clicked at index $i", Toast.LENGTH_SHORT).show()
16 | }
17 | // programmatically show and dismiss DropDownView
18 | btn_show.setOnClickListener { dropdown_fruits.showDropdown() }
19 | btn_hide.setOnClickListener { dropdown_fruits.hideDropdown() }
20 | }
21 | }
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ic_launcher_foreground.xml:
--------------------------------------------------------------------------------
1 |
8 |
12 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_main.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
26 |
27 |
36 |
37 |
46 |
47 |
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qandeelabbassi/Dropsy/fd54935e3998fcdef931c51916e604ae566258aa/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qandeelabbassi/Dropsy/fd54935e3998fcdef931c51916e604ae566258aa/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qandeelabbassi/Dropsy/fd54935e3998fcdef931c51916e604ae566258aa/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qandeelabbassi/Dropsy/fd54935e3998fcdef931c51916e604ae566258aa/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qandeelabbassi/Dropsy/fd54935e3998fcdef931c51916e604ae566258aa/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qandeelabbassi/Dropsy/fd54935e3998fcdef931c51916e604ae566258aa/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qandeelabbassi/Dropsy/fd54935e3998fcdef931c51916e604ae566258aa/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qandeelabbassi/Dropsy/fd54935e3998fcdef931c51916e604ae566258aa/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qandeelabbassi/Dropsy/fd54935e3998fcdef931c51916e604ae566258aa/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qandeelabbassi/Dropsy/fd54935e3998fcdef931c51916e604ae566258aa/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/app/src/main/res/values-night/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
16 |
--------------------------------------------------------------------------------
/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #FFBB86FC
4 | #FF6200EE
5 | #FF3700B3
6 | #FF03DAC5
7 | #FF018786
8 | #FF000000
9 | #FFFFFFFF
10 |
--------------------------------------------------------------------------------
/app/src/main/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 16dp
4 | 0dp
5 |
--------------------------------------------------------------------------------
/app/src/main/res/values/ic_launcher_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #000000
4 |
--------------------------------------------------------------------------------
/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | Dropsy
3 | Fruit:
4 | Show
5 | Hide
6 |
7 | Apple
8 | Mango
9 | Orange
10 | Banana
11 | Pineapple
12 |
13 |
--------------------------------------------------------------------------------
/app/src/main/res/values/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
16 |
--------------------------------------------------------------------------------
/app/src/test/java/com/qandeelabbassi/dropsydemo/ExampleUnitTest.kt:
--------------------------------------------------------------------------------
1 | package com.qandeelabbassi.dropsydemo
2 |
3 | import org.junit.Test
4 |
5 | import org.junit.Assert.*
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * See [testing documentation](http://d.android.com/tools/testing).
11 | */
12 | class ExampleUnitTest {
13 | @Test
14 | fun addition_isCorrect() {
15 | assertEquals(4, 2 + 2)
16 | }
17 | }
--------------------------------------------------------------------------------
/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 | buildscript {
3 | ext.kotlin_version = "1.4.21"
4 | repositories {
5 | google()
6 | jcenter()
7 | }
8 | dependencies {
9 | classpath 'com.android.tools.build:gradle:4.1.2'
10 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
11 |
12 | // NOTE: Do not place your application dependencies here; they belong
13 | // in the individual module build.gradle files
14 | }
15 | }
16 |
17 | allprojects {
18 | repositories {
19 | google()
20 | jcenter()
21 | }
22 | }
23 |
24 | task clean(type: Delete) {
25 | delete rootProject.buildDir
26 | }
--------------------------------------------------------------------------------
/dropsy/.gitignore:
--------------------------------------------------------------------------------
1 | /build
--------------------------------------------------------------------------------
/dropsy/build.gradle:
--------------------------------------------------------------------------------
1 | plugins {
2 | id 'com.android.library'
3 | id 'kotlin-android'
4 | id 'kotlin-android-extensions'
5 | id 'kotlin-kapt'
6 | }
7 |
8 | android {
9 | resourcePrefix 'dropsy_'
10 | compileSdkVersion 30
11 | buildToolsVersion "30.0.2"
12 |
13 | defaultConfig {
14 | minSdkVersion 19
15 | targetSdkVersion 30
16 | versionCode 2
17 | versionName "1.1"
18 |
19 | testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
20 | consumerProguardFiles "consumer-rules.pro"
21 | }
22 |
23 | buildTypes {
24 | release {
25 | minifyEnabled false
26 | proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
27 | }
28 | }
29 | compileOptions {
30 | sourceCompatibility JavaVersion.VERSION_1_8
31 | targetCompatibility JavaVersion.VERSION_1_8
32 | }
33 | kotlinOptions {
34 | jvmTarget = '1.8'
35 | }
36 | }
37 |
38 | dependencies {
39 | implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
40 | implementation 'androidx.core:core-ktx:1.3.2'
41 | implementation 'androidx.appcompat:appcompat:1.2.0'
42 |
43 | /*UI libs*/
44 | api "com.github.skydoves:powermenu:2.1.9"
45 | implementation 'com.google.android.material:material:1.2.1'
46 | implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
47 |
48 | /*Test libs*/
49 | testImplementation 'junit:junit:4.13.1'
50 | androidTestImplementation 'androidx.test.ext:junit:1.1.2'
51 | androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
52 | }
--------------------------------------------------------------------------------
/dropsy/consumer-rules.pro:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qandeelabbassi/Dropsy/fd54935e3998fcdef931c51916e604ae566258aa/dropsy/consumer-rules.pro
--------------------------------------------------------------------------------
/dropsy/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # You can control the set of applied configuration files using the
3 | # proguardFiles setting in build.gradle.
4 | #
5 | # For more details, see
6 | # http://developer.android.com/guide/developing/tools/proguard.html
7 |
8 | # If your project uses WebView with JS, uncomment the following
9 | # and specify the fully qualified class name to the JavaScript interface
10 | # class:
11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
12 | # public *;
13 | #}
14 |
15 | # Uncomment this to preserve the line number information for
16 | # debugging stack traces.
17 | #-keepattributes SourceFile,LineNumberTable
18 |
19 | # If you keep the line number information, uncomment this to
20 | # hide the original source file name.
21 | #-renamesourcefileattribute SourceFile
--------------------------------------------------------------------------------
/dropsy/src/androidTest/java/com/qandeelabbassi/dropsy/ExampleInstrumentedTest.kt:
--------------------------------------------------------------------------------
1 | package com.qandeelabbassi.dropsy
2 |
3 | import androidx.test.platform.app.InstrumentationRegistry
4 | import androidx.test.ext.junit.runners.AndroidJUnit4
5 |
6 | import org.junit.Test
7 | import org.junit.runner.RunWith
8 |
9 | import org.junit.Assert.*
10 |
11 | /**
12 | * Instrumented test, which will execute on an Android device.
13 | *
14 | * See [testing documentation](http://d.android.com/tools/testing).
15 | */
16 | @RunWith(AndroidJUnit4::class)
17 | class ExampleInstrumentedTest {
18 | @Test
19 | fun useAppContext() {
20 | // Context of the app under test.
21 | val appContext = InstrumentationRegistry.getInstrumentation().targetContext
22 | assertEquals("com.qandeelabbassi.dropsy.test", appContext.packageName)
23 | }
24 | }
--------------------------------------------------------------------------------
/dropsy/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/dropsy/src/main/java/com/qandeelabbassi/dropsy/CustomTextView.kt:
--------------------------------------------------------------------------------
1 | package com.qandeelabbassi.dropsy
2 |
3 | import android.content.Context
4 | import android.util.AttributeSet
5 | import androidx.appcompat.widget.AppCompatTextView
6 |
7 | /**
8 | * Created by qandeel.rasheed on 8/12/2020 at 10:28 PM.
9 | */
10 | class CustomTextView @JvmOverloads constructor(
11 | context: Context,
12 | attrs: AttributeSet? = null,
13 | defStyle: Int = 0
14 | ) : AppCompatTextView(context, attrs, defStyle) {
15 | var fonts = arrayOf(
16 | "roboto_regular", "roboto_thin", "roboto_light", "roboto_medium",
17 | "roboto_bold", "roboto_black"
18 | )
19 |
20 | init {
21 | val a = context.theme.obtainStyledAttributes(
22 | attrs,
23 | R.styleable.CustomTextView,
24 | 0, 0
25 | )
26 | val fontType = fonts[a.getInteger(R.styleable.CustomTextView_dropsyFontType, 0)]
27 | a.recycle()
28 | applyCustomFont(context, fontType)
29 | }
30 |
31 | fun applyCustomFont(context: Context, fontName: String) {
32 | val customFont = FontCache.getTypeface(fontName, context)
33 | typeface = customFont
34 | }
35 | }
--------------------------------------------------------------------------------
/dropsy/src/main/java/com/qandeelabbassi/dropsy/DropDownAdapter.kt:
--------------------------------------------------------------------------------
1 | package com.qandeelabbassi.dropsy
2 |
3 | import android.content.Context
4 | import android.graphics.Color
5 | import android.view.LayoutInflater
6 | import android.view.View
7 | import android.view.ViewGroup
8 | import android.widget.ImageView
9 | import com.skydoves.powermenu.MenuBaseAdapter
10 |
11 | /**
12 | * Created by qandeel.rasheed on 1/19/2021 at 11:55 PM.
13 | */
14 | class DropDownAdapter internal constructor() :
15 | MenuBaseAdapter() {
16 | private var selectedIndex = -1
17 | private var textColor: Int? = null
18 |
19 | internal fun setTextColor(color: Int) {
20 | this.textColor = color
21 | }
22 |
23 | override fun getView(index: Int, v: View?, viewGroup: ViewGroup): View {
24 | var view: View? = v
25 | val context: Context = viewGroup.context
26 | if (view == null) {
27 | val inflater: LayoutInflater =
28 | context.getSystemService(Context.LAYOUT_INFLATER_SERVICE) as LayoutInflater
29 | view = inflater.inflate(R.layout.dropsy_item_drop_down, viewGroup, false)
30 | }
31 | val item = getItem(index) as DropDownItem
32 | val txtLabel: CustomTextView? = view?.findViewById(R.id.txt_label)
33 | //val imgCheck = view?.findViewById(R.id.img_check)
34 |
35 | txtLabel?.text = item.text
36 | textColor?.let { txtLabel?.setTextColor(it) }
37 |
38 | if (item.checked)
39 | txtLabel?.applyCustomFont(context, "roboto_bold")
40 | else
41 | txtLabel?.applyCustomFont(context, "roboto_regular")
42 |
43 | //imgCheck?.visibility = if (item.checked) View.VISIBLE else View.INVISIBLE
44 | return super.getView(index, view, viewGroup)
45 | }
46 |
47 | fun setSelection(index: Int, item: DropDownItem?) {
48 | if (selectedIndex != -1 && selectedIndex < itemList.size)
49 | (getItem(selectedIndex) as DropDownItem).toggleState()
50 | item?.toggleState()
51 | notifyDataSetChanged()
52 | selectedIndex = index
53 | }
54 | }
--------------------------------------------------------------------------------
/dropsy/src/main/java/com/qandeelabbassi/dropsy/DropDownItem.kt:
--------------------------------------------------------------------------------
1 | package com.qandeelabbassi.dropsy
2 |
3 | /**
4 | * Created by qandeel.rasheed on 1/19/2021 at 11:56 PM.
5 | */
6 | class DropDownItem(var text: String, var checked: Boolean = false) {
7 | fun toggleState() {
8 | checked = !checked
9 | }
10 | }
--------------------------------------------------------------------------------
/dropsy/src/main/java/com/qandeelabbassi/dropsy/DropDownView.kt:
--------------------------------------------------------------------------------
1 | package com.qandeelabbassi.dropsy
2 |
3 | import android.content.Context
4 | import android.content.res.TypedArray
5 | import android.graphics.Color
6 | import android.util.AttributeSet
7 | import android.view.LayoutInflater
8 | import android.view.View
9 | import android.view.animation.Animation
10 | import android.view.animation.RotateAnimation
11 | import android.widget.LinearLayout
12 | import androidx.core.content.ContextCompat
13 | import androidx.lifecycle.LifecycleOwner
14 | import com.google.android.material.card.MaterialCardView
15 | import com.skydoves.powermenu.CustomPowerMenu
16 | import com.skydoves.powermenu.MenuAnimation
17 | import com.skydoves.powermenu.OnDismissedListener
18 | import com.skydoves.powermenu.OnMenuItemClickListener
19 | import kotlinx.android.synthetic.main.dropsy_layout_drop_down.view.*
20 |
21 |
22 | /**
23 | * Created by qandeel.rasheed on 1/19/2021 at 9:11 PM.
24 | */
25 | class DropDownView @JvmOverloads constructor(
26 | context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0,
27 | ) : MaterialCardView(context, attrs, defStyleAttr),
28 | OnMenuItemClickListener, OnDismissedListener, View.OnClickListener {
29 |
30 | fun interface ItemClickListener {
31 | fun onItemClick(position: Int, item: DropDownItem)
32 | }
33 |
34 | private var listener: ItemClickListener? = null
35 | private lateinit var dropDownItems: List
36 | private val dropDownAdapter = DropDownAdapter()
37 | private val dropDownPopup: CustomPowerMenu by lazy {
38 | val popup: CustomPowerMenu =
39 | CustomPowerMenu.Builder(context, dropDownAdapter)
40 | .setWidth(width)
41 | .addItemList(dropDownItems)
42 | .setMenuRadius(radius)
43 | .setPadding(resources.getDimension(R.dimen.dropsy_white_space_margin).toInt())
44 | .setShowBackground(false)
45 | .setOnDismissListener(this)
46 | .setDismissIfShowAgain(true)
47 | .setFocusable(true)
48 | .setOnMenuItemClickListener(this)
49 | .setAnimation(MenuAnimation.DROP_DOWN)
50 | .setLifecycleOwner(context as LifecycleOwner)
51 | .build()
52 | if (dropDownItems.isNotEmpty())
53 | dropDownAdapter.setSelection(0, dropDownItems[0])
54 | popup
55 | }
56 |
57 | init {
58 | // Add body layout
59 | val dropDownBody = LayoutInflater.from(context).inflate(
60 | R.layout.dropsy_layout_drop_down,
61 | this,
62 | false
63 | ) as LinearLayout
64 | addView(dropDownBody)
65 |
66 | // get attrs
67 | val dropsyAttrs = context.theme.obtainStyledAttributes(
68 | attrs,
69 | R.styleable.DropDownView,
70 | 0, 0
71 | )
72 | setStyles(dropsyAttrs)
73 | initData(dropsyAttrs)
74 | dropsyAttrs.recycle()
75 |
76 | setOnClickListener(this)
77 | }
78 |
79 | private fun setStyles(dropsyAttrs: TypedArray) {
80 | val resources = context.resources
81 | val dropsyLabelColor =
82 | dropsyAttrs.getColor(
83 | R.styleable.DropDownView_dropsyLabelColor,
84 | ContextCompat.getColor(context, R.color.dropsy_text_color_secondary)
85 | )
86 | val dropsyValueColor =
87 | dropsyAttrs.getColor(
88 | R.styleable.DropDownView_dropsyValueColor,
89 | ContextCompat.getColor(context, R.color.dropsy_text_color)
90 | )
91 | val dropsyElevation =
92 | dropsyAttrs.getDimension(R.styleable.DropDownView_dropsyElevation, 0.0f)
93 | val dropsySelector =
94 | dropsyAttrs.getColor(R.styleable.DropDownView_dropsySelector, Color.BLACK)
95 | val dropsyBorderSelector =
96 | dropsyAttrs.getColorStateList(R.styleable.DropDownView_dropsyBorderSelector)
97 |
98 | // arrow styling
99 | if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.LOLLIPOP) {
100 | img_arrow.imageTintList =
101 | dropsyAttrs.getColorStateList(R.styleable.DropDownView_dropsySelector)
102 | } else {
103 | img_arrow.setColorFilter(dropsySelector, android.graphics.PorterDuff.Mode.SRC_IN)
104 | }
105 |
106 | // text styling
107 | txt_drop_drown_label.setTextColor(dropsyLabelColor)
108 | txt_drop_drown_value.setTextColor(dropsyValueColor)
109 | dropDownAdapter.setTextColor(dropsyValueColor)
110 |
111 | // card styling
112 | val padding = resources.getDimension(R.dimen.dropsy_dropdown_padding).toInt()
113 | setContentPadding(padding, padding, padding, padding)
114 | radius = resources.getDimension(R.dimen.dropsy_dropdown_corner_radius)
115 | strokeWidth = resources.getDimension(R.dimen.dropsy_dropdown_stroke_width).toInt()
116 | strokeColor = dropsySelector
117 |
118 | if (dropsyBorderSelector == null)
119 | setStrokeColor(
120 | ContextCompat.getColorStateList(context, R.color.dropsy_selector)
121 | )
122 | else
123 | setStrokeColor(dropsyBorderSelector)
124 |
125 | if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.LOLLIPOP)
126 | elevation = dropsyElevation
127 | }
128 |
129 | private fun initData(dropsyAttrs: TypedArray) {
130 | val dropsyLabel = dropsyAttrs.getString(R.styleable.DropDownView_dropsyLabel)
131 | dropDownItems = dropsyAttrs.getTextArray(R.styleable.DropDownView_dropsyItems)?.map {
132 | DropDownItem(it.toString())
133 | } ?: listOf()
134 |
135 | txt_drop_drown_label.text = dropsyLabel
136 | if (dropsyLabel.isNullOrBlank())
137 | txt_drop_drown_label.visibility = View.GONE
138 | if (dropDownItems.isNotEmpty())
139 | txt_drop_drown_value.text = dropDownItems[0].text
140 | }
141 |
142 | override fun onClick(v: View?) {
143 | if (isSelected)
144 | hideDropdown()
145 | else
146 | showDropdown()
147 | }
148 |
149 | override fun onItemClick(position: Int, item: DropDownItem) {
150 | txt_drop_drown_value.text = item.text
151 | dropDownAdapter.setSelection(position, item)
152 | listener?.onItemClick(position, item)
153 | hideDropdown()
154 | }
155 |
156 | override fun onDismissed() {
157 | isSelected = false
158 | animateCollapse()
159 | }
160 |
161 | fun showDropdown() {
162 | post {
163 | isSelected = true
164 | dropDownPopup.showAsDropDown(this)
165 | animateExpand()
166 | }
167 | }
168 |
169 | fun hideDropdown() {
170 | postDelayed({
171 | dropDownPopup.dismiss()
172 | }, 150)
173 | }
174 |
175 | fun setItemClickListener(listener: ItemClickListener) {
176 | this.listener = listener
177 | }
178 |
179 | private fun animateExpand() {
180 | val rotate = RotateAnimation(
181 | 360f,
182 | 180f,
183 | Animation.RELATIVE_TO_SELF,
184 | 0.5f,
185 | Animation.RELATIVE_TO_SELF,
186 | 0.5f
187 | )
188 | rotate.duration = 300
189 | rotate.fillAfter = true
190 | img_arrow.startAnimation(rotate)
191 | }
192 |
193 | private fun animateCollapse() {
194 | val rotate = RotateAnimation(
195 | 180f,
196 | 360f,
197 | Animation.RELATIVE_TO_SELF,
198 | 0.5f,
199 | Animation.RELATIVE_TO_SELF,
200 | 0.5f
201 | )
202 | rotate.duration = 300
203 | rotate.fillAfter = true
204 | img_arrow.startAnimation(rotate)
205 | }
206 | }
--------------------------------------------------------------------------------
/dropsy/src/main/java/com/qandeelabbassi/dropsy/FontCache.kt:
--------------------------------------------------------------------------------
1 | package com.qandeelabbassi.dropsy
2 |
3 | import android.content.Context
4 | import android.content.res.Resources.NotFoundException
5 | import android.graphics.Typeface
6 | import android.util.Log
7 | import java.io.BufferedOutputStream
8 | import java.io.File
9 | import java.io.FileOutputStream
10 | import java.io.InputStream
11 | import java.util.*
12 |
13 | /**
14 | * Created by qandeel.rasheed on 8/12/2020 at 10:43 PM.
15 | */
16 | object FontCache {
17 | private val fontCache = HashMap()
18 | fun getTypeface(fontname: String, context: Context): Typeface? {
19 | var typeface = fontCache[fontname]
20 | if (typeface == null) {
21 | typeface = try {
22 | getFontFromRes(
23 | context,
24 | context.resources.getIdentifier(fontname, "raw", context.packageName)
25 | )
26 | } catch (e: Exception) {
27 | return null
28 | }
29 | fontCache[fontname] = typeface
30 | }
31 | return typeface
32 | }
33 |
34 | private fun getFontFromRes(context: Context, resource: Int): Typeface? {
35 | val tf: Typeface?
36 | var inputStream: InputStream? = null
37 | try {
38 | inputStream = context.resources.openRawResource(resource)
39 | } catch (e: NotFoundException) {
40 | Log.e("test", "Could not find font in resources!")
41 | }
42 | val outPath = context.cacheDir.toString() + "/tmp" + System.currentTimeMillis() + ".raw"
43 | try {
44 | val buffer = ByteArray(inputStream!!.available())
45 | val bos = BufferedOutputStream(FileOutputStream(outPath))
46 | var l: Int
47 | while (inputStream.read(buffer).also { l = it } > 0) bos.write(buffer, 0, l)
48 | bos.close()
49 | tf = Typeface.createFromFile(outPath)
50 |
51 | // clean up
52 | File(outPath).delete()
53 | } catch (e: Exception) {
54 | Log.e("Test", "Error reading in font!")
55 | return null
56 | }
57 | Log.d("test", "Successfully loaded font.")
58 | return tf
59 | }
60 | }
--------------------------------------------------------------------------------
/dropsy/src/main/res/color/dropsy_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/dropsy/src/main/res/drawable-v21/dropsy_dropdown_item_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/dropsy/src/main/res/drawable/dropsy_dropdown_item_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/dropsy/src/main/res/drawable/dropsy_ic_check.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/dropsy/src/main/res/drawable/dropsy_ic_expand.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/dropsy/src/main/res/layout/dropsy_item_drop_down.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
20 |
21 |
27 |
--------------------------------------------------------------------------------
/dropsy/src/main/res/layout/dropsy_layout_drop_down.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
16 |
17 |
26 |
27 |
33 |
--------------------------------------------------------------------------------
/dropsy/src/main/res/raw/roboto_black.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qandeelabbassi/Dropsy/fd54935e3998fcdef931c51916e604ae566258aa/dropsy/src/main/res/raw/roboto_black.ttf
--------------------------------------------------------------------------------
/dropsy/src/main/res/raw/roboto_bold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qandeelabbassi/Dropsy/fd54935e3998fcdef931c51916e604ae566258aa/dropsy/src/main/res/raw/roboto_bold.ttf
--------------------------------------------------------------------------------
/dropsy/src/main/res/raw/roboto_light.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qandeelabbassi/Dropsy/fd54935e3998fcdef931c51916e604ae566258aa/dropsy/src/main/res/raw/roboto_light.ttf
--------------------------------------------------------------------------------
/dropsy/src/main/res/raw/roboto_medium.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qandeelabbassi/Dropsy/fd54935e3998fcdef931c51916e604ae566258aa/dropsy/src/main/res/raw/roboto_medium.ttf
--------------------------------------------------------------------------------
/dropsy/src/main/res/raw/roboto_regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qandeelabbassi/Dropsy/fd54935e3998fcdef931c51916e604ae566258aa/dropsy/src/main/res/raw/roboto_regular.ttf
--------------------------------------------------------------------------------
/dropsy/src/main/res/raw/roboto_thin.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qandeelabbassi/Dropsy/fd54935e3998fcdef931c51916e604ae566258aa/dropsy/src/main/res/raw/roboto_thin.ttf
--------------------------------------------------------------------------------
/dropsy/src/main/res/values/attrs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/dropsy/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #000000
4 | #ffffff
5 | #F2F2F7
6 | #8E8E93
7 | #6C6C6C
8 |
9 | #20000000
10 | @color/dropsy_black
11 | @color/dropsy_medium_gray
12 | @color/dropsy_dark_gray
13 | #D1D1D6
14 |
--------------------------------------------------------------------------------
/dropsy/src/main/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 10dp
5 | 20dp
6 | 8dp
7 | 12dp
8 | 2dp
9 |
--------------------------------------------------------------------------------
/dropsy/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Apple
4 | Mango
5 | Orange
6 | Banana
7 | Pineapple
8 |
9 |
--------------------------------------------------------------------------------
/dropsy/src/test/java/com/qandeelabbassi/dropsy/ExampleUnitTest.kt:
--------------------------------------------------------------------------------
1 | package com.qandeelabbassi.dropsy
2 |
3 | import org.junit.Test
4 |
5 | import org.junit.Assert.*
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * See [testing documentation](http://d.android.com/tools/testing).
11 | */
12 | class ExampleUnitTest {
13 | @Test
14 | fun addition_isCorrect() {
15 | assertEquals(4, 2 + 2)
16 | }
17 | }
--------------------------------------------------------------------------------
/gradle.properties:
--------------------------------------------------------------------------------
1 | # Project-wide Gradle settings.
2 | # IDE (e.g. Android Studio) users:
3 | # Gradle settings configured through the IDE *will override*
4 | # any settings specified in this file.
5 | # For more details on how to configure your build environment visit
6 | # http://www.gradle.org/docs/current/userguide/build_environment.html
7 | # Specifies the JVM arguments used for the daemon process.
8 | # The setting is particularly useful for tweaking memory settings.
9 | org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
10 | # When configured, Gradle will run in incubating parallel mode.
11 | # This option should only be used with decoupled projects. More details, visit
12 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
13 | # org.gradle.parallel=true
14 | # AndroidX package structure to make it clearer which packages are bundled with the
15 | # Android operating system, and which are packaged with your app"s APK
16 | # https://developer.android.com/topic/libraries/support-library/androidx-rn
17 | android.useAndroidX=true
18 | # Automatically convert third-party libraries to use AndroidX
19 | android.enableJetifier=true
20 | # Kotlin code style for this project: "official" or "obsolete":
21 | kotlin.code.style=official
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qandeelabbassi/Dropsy/fd54935e3998fcdef931c51916e604ae566258aa/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Wed Jan 20 02:21:01 PKT 2021
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-all.zip
7 |
--------------------------------------------------------------------------------
/gradlew:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env sh
2 |
3 | ##############################################################################
4 | ##
5 | ## Gradle start up script for UN*X
6 | ##
7 | ##############################################################################
8 |
9 | # Attempt to set APP_HOME
10 | # Resolve links: $0 may be a link
11 | PRG="$0"
12 | # Need this for relative symlinks.
13 | while [ -h "$PRG" ] ; do
14 | ls=`ls -ld "$PRG"`
15 | link=`expr "$ls" : '.*-> \(.*\)$'`
16 | if expr "$link" : '/.*' > /dev/null; then
17 | PRG="$link"
18 | else
19 | PRG=`dirname "$PRG"`"/$link"
20 | fi
21 | done
22 | SAVED="`pwd`"
23 | cd "`dirname \"$PRG\"`/" >/dev/null
24 | APP_HOME="`pwd -P`"
25 | cd "$SAVED" >/dev/null
26 |
27 | APP_NAME="Gradle"
28 | APP_BASE_NAME=`basename "$0"`
29 |
30 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
31 | DEFAULT_JVM_OPTS=""
32 |
33 | # Use the maximum available, or set MAX_FD != -1 to use that value.
34 | MAX_FD="maximum"
35 |
36 | warn () {
37 | echo "$*"
38 | }
39 |
40 | die () {
41 | echo
42 | echo "$*"
43 | echo
44 | exit 1
45 | }
46 |
47 | # OS specific support (must be 'true' or 'false').
48 | cygwin=false
49 | msys=false
50 | darwin=false
51 | nonstop=false
52 | case "`uname`" in
53 | CYGWIN* )
54 | cygwin=true
55 | ;;
56 | Darwin* )
57 | darwin=true
58 | ;;
59 | MINGW* )
60 | msys=true
61 | ;;
62 | NONSTOP* )
63 | nonstop=true
64 | ;;
65 | esac
66 |
67 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
68 |
69 | # Determine the Java command to use to start the JVM.
70 | if [ -n "$JAVA_HOME" ] ; then
71 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
72 | # IBM's JDK on AIX uses strange locations for the executables
73 | JAVACMD="$JAVA_HOME/jre/sh/java"
74 | else
75 | JAVACMD="$JAVA_HOME/bin/java"
76 | fi
77 | if [ ! -x "$JAVACMD" ] ; then
78 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
79 |
80 | Please set the JAVA_HOME variable in your environment to match the
81 | location of your Java installation."
82 | fi
83 | else
84 | JAVACMD="java"
85 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
86 |
87 | Please set the JAVA_HOME variable in your environment to match the
88 | location of your Java installation."
89 | fi
90 |
91 | # Increase the maximum file descriptors if we can.
92 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
93 | MAX_FD_LIMIT=`ulimit -H -n`
94 | if [ $? -eq 0 ] ; then
95 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
96 | MAX_FD="$MAX_FD_LIMIT"
97 | fi
98 | ulimit -n $MAX_FD
99 | if [ $? -ne 0 ] ; then
100 | warn "Could not set maximum file descriptor limit: $MAX_FD"
101 | fi
102 | else
103 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
104 | fi
105 | fi
106 |
107 | # For Darwin, add options to specify how the application appears in the dock
108 | if $darwin; then
109 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
110 | fi
111 |
112 | # For Cygwin, switch paths to Windows format before running java
113 | if $cygwin ; then
114 | APP_HOME=`cygpath --path --mixed "$APP_HOME"`
115 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
116 | JAVACMD=`cygpath --unix "$JAVACMD"`
117 |
118 | # We build the pattern for arguments to be converted via cygpath
119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
120 | SEP=""
121 | for dir in $ROOTDIRSRAW ; do
122 | ROOTDIRS="$ROOTDIRS$SEP$dir"
123 | SEP="|"
124 | done
125 | OURCYGPATTERN="(^($ROOTDIRS))"
126 | # Add a user-defined pattern to the cygpath arguments
127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then
128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
129 | fi
130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh
131 | i=0
132 | for arg in "$@" ; do
133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
135 |
136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
138 | else
139 | eval `echo args$i`="\"$arg\""
140 | fi
141 | i=$((i+1))
142 | done
143 | case $i in
144 | (0) set -- ;;
145 | (1) set -- "$args0" ;;
146 | (2) set -- "$args0" "$args1" ;;
147 | (3) set -- "$args0" "$args1" "$args2" ;;
148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
154 | esac
155 | fi
156 |
157 | # Escape application args
158 | save () {
159 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
160 | echo " "
161 | }
162 | APP_ARGS=$(save "$@")
163 |
164 | # Collect all arguments for the java command, following the shell quoting and substitution rules
165 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
166 |
167 | # by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
168 | if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
169 | cd "$(dirname "$0")"
170 | fi
171 |
172 | exec "$JAVACMD" "$@"
173 |
--------------------------------------------------------------------------------
/gradlew.bat:
--------------------------------------------------------------------------------
1 | @if "%DEBUG%" == "" @echo off
2 | @rem ##########################################################################
3 | @rem
4 | @rem Gradle startup script for Windows
5 | @rem
6 | @rem ##########################################################################
7 |
8 | @rem Set local scope for the variables with windows NT shell
9 | if "%OS%"=="Windows_NT" setlocal
10 |
11 | set DIRNAME=%~dp0
12 | if "%DIRNAME%" == "" set DIRNAME=.
13 | set APP_BASE_NAME=%~n0
14 | set APP_HOME=%DIRNAME%
15 |
16 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
17 | set DEFAULT_JVM_OPTS=
18 |
19 | @rem Find java.exe
20 | if defined JAVA_HOME goto findJavaFromJavaHome
21 |
22 | set JAVA_EXE=java.exe
23 | %JAVA_EXE% -version >NUL 2>&1
24 | if "%ERRORLEVEL%" == "0" goto init
25 |
26 | echo.
27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
28 | echo.
29 | echo Please set the JAVA_HOME variable in your environment to match the
30 | echo location of your Java installation.
31 |
32 | goto fail
33 |
34 | :findJavaFromJavaHome
35 | set JAVA_HOME=%JAVA_HOME:"=%
36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe
37 |
38 | if exist "%JAVA_EXE%" goto init
39 |
40 | echo.
41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
42 | echo.
43 | echo Please set the JAVA_HOME variable in your environment to match the
44 | echo location of your Java installation.
45 |
46 | goto fail
47 |
48 | :init
49 | @rem Get command-line arguments, handling Windows variants
50 |
51 | if not "%OS%" == "Windows_NT" goto win9xME_args
52 |
53 | :win9xME_args
54 | @rem Slurp the command line arguments.
55 | set CMD_LINE_ARGS=
56 | set _SKIP=2
57 |
58 | :win9xME_args_slurp
59 | if "x%~1" == "x" goto execute
60 |
61 | set CMD_LINE_ARGS=%*
62 |
63 | :execute
64 | @rem Setup the command line
65 |
66 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
67 |
68 | @rem Execute Gradle
69 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
70 |
71 | :end
72 | @rem End local scope for the variables with windows NT shell
73 | if "%ERRORLEVEL%"=="0" goto mainEnd
74 |
75 | :fail
76 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
77 | rem the _cmd.exe /c_ return code!
78 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
79 | exit /b 1
80 |
81 | :mainEnd
82 | if "%OS%"=="Windows_NT" endlocal
83 |
84 | :omega
85 |
--------------------------------------------------------------------------------
/screenshots/dropsy_demo.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qandeelabbassi/Dropsy/fd54935e3998fcdef931c51916e604ae566258aa/screenshots/dropsy_demo.gif
--------------------------------------------------------------------------------
/screenshots/sample_app.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/qandeelabbassi/Dropsy/fd54935e3998fcdef931c51916e604ae566258aa/screenshots/sample_app.png
--------------------------------------------------------------------------------
/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':dropsy'
2 | include ':app'
3 | rootProject.name = "Dropsy"
--------------------------------------------------------------------------------