Skip to content

Instantly share code, notes, and snippets.

View KirillJJ's full-sized avatar

Kirill KirillJJ

View GitHub Profile
using System;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
First();
Second();
@KirillJJ
KirillJJ / tt.xml
Last active December 21, 2018 10:56
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/base_background"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<android.support.v7.widget.RecyclerView
android:id="@+id/rv_catalog"
android:layout_width="match_parent"
Unless specified otherwise, all of the below tinting applies to both Lollipop and pre-Lollipop using AppCompat v21.
To use the support version of these attributes, remove the android namespace.
For instance, "android:colorControlNormal" becomes "colorControlNormal".
These attributes will be propagated to their corresponding attributes within the android namespace
for devices running Lollipop. Any exceptions to this will be noted by including the "android:" prefix.
All Clickable Views:
-----------