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
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { | |
getWindow().getDecorView() | |
.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_STABLE | |
| View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | |
| View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION); | |
getWindow().addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS); | |
getWindow().clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION); | |
getWindow().setStatusBarColor(Color.TRANSPARENT); |
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
public class MaterialDialogUtils { | |
private MaterialDialog.Builder builder; | |
private COUNTDOWN_BUTTON countdownButton; | |
private long timeInMillis; | |
private boolean positive; | |
private int positiveText; | |
private int positiveTextCountdown; |
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
/** | |
* returns true if mock location enabled, false if not enabled. | |
*/ | |
public static boolean isMockSettingsON(Context context) { | |
return !Settings.Secure.getString(context.getContentResolver(), | |
Settings.Secure.ALLOW_MOCK_LOCATION).equals("0"); | |
} |
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
private int fetchPrimaryColor() { | |
int colorAccent = Color.parseColor("#FF0000"); | |
int attr = Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP ? android.R.attr.colorPrimary : R.attr.colorPrimary; | |
TypedArray a = getContext().getTheme().obtainStyledAttributes(new int[]{attr}); | |
colorAccent = a.getColor(0, colorAccent); | |
a.recycle(); | |
return colorAccent; |
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
ScheduledExecutorService executorService = Executors.newScheduledThreadPool(5); | |
executorService.scheduleAtFixedRate(runnable, 0, 5, TimeUnit.SECONDS); |
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.worldline.evasdk.view.utils; | |
import android.support.v4.view.ViewCompat; | |
import android.view.MotionEvent; | |
import android.view.View; | |
/** | |
* Created by a557114 on 07/05/2015. | |
*/ | |
public class ElevationUtils { |
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
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:card_view="http://schemas.android.com/apk/res-auto" | |
xmlns:tools="http://schemas.android.com/tools" | |
xmlns:card="http://schemas.android.com/apk/res-auto" | |
android:layout_gravity="center" | |
android:layout_width="match_parent" | |
android:layout_height="180dp" | |
android:background="@color/white" | |
card_view:cardCornerRadius="4dp" | |
android:clickable="true" |
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
jdbcjbdg |
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
public abstract class ArrayAdapterRecycler<T, VH extends RecyclerView.ViewHolder> extends RecyclerView.Adapter<VH> { | |
private List<T> items; | |
protected ArrayAdapterRecycler(List<T> items) { | |
this.items = items; | |
} | |
@Override | |
public int getItemCount() { |
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.worldline.evasdk.view.widget; | |
import android.content.Context; | |
import android.content.res.TypedArray; | |
import android.graphics.Color; | |
import android.graphics.drawable.Drawable; | |
import android.support.v4.view.ViewCompat; | |
import android.util.AttributeSet; | |
import android.view.LayoutInflater; | |
import android.view.View; |