This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Veja abaixo / See below |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 07-26 22:13:14.046 3912-3912/? D/dalvikvm: Late-enabling CheckJNI | |
| 07-26 22:13:14.130 3912-3912/example.android.com I/dalvikvm: Could not find method android.view.Window$Callback.onPointerCaptureChanged, referenced from method android.support.v7.view.WindowCallbackWrapper.onPointerCaptureChanged | |
| 07-26 22:13:14.130 3912-3912/example.android.com W/dalvikvm: VFY: unable to resolve interface method 20920: Landroid/view/Window$Callback;.onPointerCaptureChanged (Z)V | |
| 07-26 22:13:14.130 3912-3912/example.android.com D/dalvikvm: VFY: replacing opcode 0x72 at 0x0002 | |
| 07-26 22:13:14.130 3912-3912/example.android.com I/dalvikvm: Could not find method android.view.Window$Callback.onProvideKeyboardShortcuts, referenced from method android.support.v7.view.WindowCallbackWrapper.onProvideKeyboardShortcuts | |
| 07-26 22:13:14.130 3912-3912/example.android.com W/dalvikvm: VFY: unable to resolve interface method 20922: Landroid/view/Window$Callback;.onProvideKeyboardShortcuts (Ljava/util/List;Landroid/view/Menu;I)V | |
| 07-26 22:13:14.130 3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| String weddingDate = "26/02/1974"; | |
| /* Specify which format is */ | |
| SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy"); | |
| Date date = null; | |
| try { | |
| /* Parse to date object */ | |
| date = sdf.parse(weddingDate); | |
| } catch (ParseException e) { | |
| // handle exception here ! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Explained Method | |
| Drawable deleteIcon = ContextCompat.getDrawable(context, R.drawable.ic_delete); | |
| Drawable deleteIconCompat = DrawableCompat.wrap(deleteIcon).mutate(); | |
| Drawable deleteIconMute = deleteIconCompat.mutate(); | |
| DrawableCompat.setTint(deleteIconMute, Color.RED); | |
| // Compact Method | |
| DrawableCompat.setTint( | |
| DrawableCompat.wrap( | |
| ContextCompat.getDrawable(context, R.drawable.ic_check).mutate()), Color.WHITE); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * The MIT License (MIT) | |
| * | |
| * Copyright (c) 2014 Matthieu Harlé | |
| * | |
| * Permission is hereby granted, free of charge, to any person obtaining a copy | |
| * of this software and associated documentation files (the "Software"), to deal | |
| * in the Software without restriction, including without limitation the rights | |
| * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| * copies of the Software, and to permit persons to whom the Software is |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
| xmlns:app="http://schemas.android.com/apk/res-auto" | |
| xmlns:tools="http://schemas.android.com/tools" | |
| android:layout_width="match_parent" | |
| android:layout_height="match_parent" | |
| android:fitsSystemWindows="true" | |
| tools:context=".activity.AquaInfo"> | |
| <android.support.design.widget.AppBarLayout |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <!-- Add this as a debug manifest so the permissions won't be required by your production app --> | |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android"> | |
| <uses-permission android:name="android.permission.WAKE_LOCK" /> | |
| <uses-permission android:name="android.permission.DISABLE_KEYGUARD" /> | |
| </manifest> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.example.nakamoto.fishtool; | |
| import android.animation.LayoutTransition; | |
| import android.app.Activity; | |
| import android.os.Bundle; | |
| import android.view.View; | |
| import android.widget.LinearLayout; | |
| import android.widget.TextView; | |
| public class AnimatedLinearLayout extends Activity { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Copyright (C) 2014 skyfish.jy@gmail.com | |
| * | |
| * 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| !SESSION 2018-02-23 19:13:37.248 ----------------------------------------------- | |
| eclipse.buildId=unknown | |
| java.version=9.0.1 | |
| java.vendor=Oracle Corporation | |
| BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=pt_BR | |
| Framework arguments: -keyring /Users/phartmann/.eclipse_keyring -showlocation | |
| Command-line arguments: -os macosx -ws cocoa -arch x86_64 -data @noDefault -keyring /Users/phartmann/.eclipse_keyring -showlocation | |
| !ENTRY org.eclipse.osgi 4 0 2018-02-23 19:13:37.966 | |
| !MESSAGE Bundle reference:file:org.apache.ant_1.8.3.v201301120609/@4 not found. |