Skip to content

Instantly share code, notes, and snippets.

/*
* Copyright (c) 2022 DuckDuckGo
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
@malmstein
malmstein / FloatView
Last active August 29, 2015 14:06
custom layout attribute loading
public final class FloatLabelLayout extends FrameLayout {
private static final long ANIMATION_DURATION = 150;
private static final float DEFAULT_PADDING_LEFT_RIGHT_DP = 12f;
private EditText mEditText;
private TextView mLabel;
public FloatLabelLayout(Context context) {
private static final class ConcertDataSubscriber extends Subscriber<ConcertItem> {
private final ConcertListAdapter adapter;
private ConcertDataSubscriber(final ConcertListAdapter adapter) {
this.adapter = adapter;
}
@Override
public void onCompleted() {
apply plugin: 'java'
apply plugin: "jacoco"
repositories {
mavenCentral()
}
dependencies {