Skip to content

Instantly share code, notes, and snippets.

@tylerchesley
tylerchesley / TintableImageView.java
Created March 17, 2015 16:36
Backwards compatible TintableImageView
package com.example.widgets;
import android.content.Context;
import android.content.res.ColorStateList;
import android.content.res.TypedArray;
import android.util.AttributeSet;
import android.widget.ImageView;
import com.example.R;
@joesteele
joesteele / btn_alpha_bg.xml
Last active February 5, 2021 14:58
Ripple when view has alpha background
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#66000000"/>
<corners android:radius="4dp"/>
</shape>