This file contains hidden or 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
package com.bigoven.android.widgets; | |
import android.content.Context; | |
import android.graphics.drawable.Drawable; | |
import android.support.v7.widget.AppCompatAutoCompleteTextView; | |
import android.text.Editable; | |
import android.text.TextUtils; | |
import android.text.TextWatcher; | |
import android.util.AttributeSet; | |
import android.view.MotionEvent; |
This file contains hidden or 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
import android.support.v7.widget.RecyclerView; | |
import android.util.SparseArray; | |
import android.view.ViewGroup; | |
/** | |
* Created by Chantell Osejo on 8/7/15. | |
* This adapter wraps multiple adapters with different object types for use with a recyclerview. | |
* Copyright (C) 2015 Chantell Osejo | |
* | |
* This program is free software: you can redistribute it and/or modify |
This file contains hidden or 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
[ | |
{ | |
"conference": "32C3", | |
"group": "Lecture Rooms", | |
"rooms": [ | |
{ | |
"slug": "hall1", | |
"schedulename": "Hall 1", | |
"thumb": "https://streaming.media.ccc.de/32c3/../thumbs/s1.png", | |
"link": "https://streaming.media.ccc.de/32c3/hall1/", |
This file contains hidden or 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
project.afterEvaluate { | |
project.("connectedDebugAndroidTest").doFirst { | |
def originalProvider = deviceProvider | |
deviceProvider = [ | |
getName : { originalProvider.getName() }, | |
init : { originalProvider.init() }, | |
terminate : { originalProvider.terminate() }, | |
getDevices : { filterDevices(originalProvider.getDevices()) }, | |
getTimeoutInMs: { originalProvider.getTimeoutInMs() }, | |
isConfigured : { originalProvider.isConfigured() }, |
This file contains hidden or 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
package be.digitalia.common.widgets; | |
import android.content.Context; | |
import android.os.SystemClock; | |
import android.util.AttributeSet; | |
import android.view.View; | |
import android.widget.ProgressBar; | |
/** | |
* ContentLoadingProgressBar implements a ProgressBar that waits a minimum time to be |
This file contains hidden or 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
@MultipartBody | |
public class Article { | |
String author; | |
File photo; | |
} |
This file contains hidden or 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
package com.pixite.fragment.widget; | |
import android.content.res.Resources; | |
import android.graphics.Canvas; | |
import android.graphics.ColorFilter; | |
import android.graphics.Rect; | |
import android.graphics.drawable.Drawable; | |
import android.graphics.drawable.Drawable.Callback; | |
import android.view.Gravity; |
This file contains hidden or 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
def generateJavadocJar = project.task("generateJavadocJars"){ | |
description "Generate all Javadoc Jars of all Variants" | |
group 'jar' | |
} | |
def generateJavadoc = project.task("generateJavadocs"){ | |
description "Generate all Javadoc of all Variants" | |
group 'jar' | |
} |
This file contains hidden or 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
<?xml version="1.0" encoding="utf-8"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android"> | |
<application | |
android:label="${applicationLabel}"> | |
<activity | |
android:label="${applicationLabel}"> | |
<intent-filter> | |
<action android:name="android.intent.action.MAIN" /> | |
<category android:name="android.intent.category.LAUNCHER" /> | |
</intent-filter> |