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.gateme3.app.util; | |
import android.location.Location; | |
import android.location.LocationManager; | |
import android.util.Log; | |
import com.gateme3.app.db.PurchasedItem; | |
import com.gateme3.app.db.Venue; | |
import java.io.ByteArrayOutputStream; |
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
/** | |
* Util class handling successive clicks in a given amount of time. | |
* Useful for easter eggs or extending default click behavior to more | |
* complicated situations. | |
* | |
* Created by Nathan VanBenschoten on 4/1/2014. | |
* Copyright (c) 2014 Tablelist LLC. All rights reserved. | |
*/ | |
public class SuccessiveClickUtil { |
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 your.package; | |
import android.app.Activity; | |
import android.os.Bundle; | |
import android.support.v7.graphics.Palette; | |
import com.squareup.picasso.Picasso; | |
import your.package.PaletteTransformation; | |
import static your.package.PaletteTransformation.PaletteCallback; |
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.content.Context; | |
import android.support.annotation.NonNull; | |
import android.support.annotation.Nullable; | |
import android.support.v7.widget.RecyclerView; | |
import android.util.AttributeSet; | |
import android.view.View; | |
public class EmptyRecyclerView extends RecyclerView { |
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
<Button | |
android:id="@+id/but_next" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:text="@string/but_continue" | |
android:theme="@style/Button.Tinted" /> |