If you are annoyed that "Sources for Android 26" are not yet available via SDK manager, this might be for you:
- Collect source files
mkdir android-sdk-source-build
cd android-sdk-source-build
mkdir -p frameworks/base| import 'package:flutter/material.dart'; | |
| class Bubble extends StatelessWidget { | |
| Bubble({this.message, this.time, this.delivered, this.isMe}); | |
| final String message, time; | |
| final delivered, isMe; | |
| @override | |
| Widget build(BuildContext context) { |
If you are annoyed that "Sources for Android 26" are not yet available via SDK manager, this might be for you:
mkdir android-sdk-source-build
cd android-sdk-source-build
mkdir -p frameworks/base| package com.liberorignanese.android.gist; | |
| import android.graphics.Canvas; | |
| import android.graphics.Paint; | |
| import android.text.style.ReplacementSpan; | |
| /** | |
| * Created by Libero Rignanese. | |
| */ |
| @SuppressWarnings({ "WeakerAccess", "unused" }) public class SQLQueryBuilder { | |
| private static final String STATEMENT_SELECT = "SELECT"; | |
| private static final String STATEMENT_DISTINCT_SELECT = "SELECT DISTINCT"; | |
| private static final String STATEMENT_UPDATE = "UPDATE"; | |
| private static final String STATEMENT_INSERT_INTO = "INSERT INTO"; | |
| private static final String STATEMENT_DELETE = "DELETE FROM"; | |
| private static final String WHERE = "WHERE"; | |
| private static final String FROM = "FROM"; |
| import retrofit.Call | |
| import retrofit.Callback | |
| import retrofit.Response | |
| import retrofit.Retrofit | |
| /** | |
| * @author Alex Facciorusso | |
| * @since 06/11/15 | |
| */ |
| public class ErrorLabelLayout extends LinearLayout implements ViewGroup.OnHierarchyChangeListener { | |
| private static final int ERROR_LABEL_TEXT_SIZE = 12; | |
| private static final int ERROR_LABEL_PADDING = 4; | |
| private TextView mErrorLabel; | |
| private Drawable mDrawable; | |
| private int mErrorColor; | |
| public ErrorLabelLayout(Context context) { |
| dependencies { | |
| compile 'com.android.support:appcompat-v7:21.+' | |
| compile 'com.wrapp.floatlabelededittext:library:0.0.5' | |
| } |
| package com.blogspot.ksoichiro.linktest; | |
| import android.text.Layout; | |
| import android.text.Spannable; | |
| import android.text.SpannableString; | |
| import android.text.Spanned; | |
| import android.text.TextUtils; | |
| import android.text.method.LinkMovementMethod; | |
| import android.text.style.ClickableSpan; |