Skip to content

Instantly share code, notes, and snippets.

View sbaar's full-sized avatar

Scott Baar sbaar

  • Cover
  • San Francisco
View GitHub Profile
@yqritc
yqritc / AndroidABIs.md
Last active October 5, 2017 22:52
Android ABI share on Google Play Store

Android ABI share on Google Play (JAN/05/2017)

The followings are the number of supported devices for each ABI on GooglePlay Store.
Google Play Store shows us these number by uploading an application including native library which support each ABI.
Test application is

  • min sdk 16
  • no permission in android manifest
ABI The number of supported devices
@ljubisa987
ljubisa987 / gist:e33cd5597da07172c55d
Last active July 26, 2021 18:02
TextInputLayout temporary workaround for hint not showing on initial load for SDK > 20
import android.content.Context;
import android.graphics.Canvas;
import android.support.design.widget.TextInputLayout;
import android.support.v4.view.ViewCompat;
import android.util.AttributeSet;
import android.view.View;
import android.view.ViewGroup;
import android.widget.EditText;
public class CustomTextInputLayout extends TextInputLayout {