TapTargetView


Source link: https://github.com/KeepSafe/TapTargetView


TapTargetView 

An implementation of tap targets from Google's Material Design guidelines on feature discovery.

Min SDK: 14

Installation

TapTargetView is distributed using jcenter.

repositories {

 jcenter()
 
}

  dependencies {

 compile 'com.getkeepsafe.taptargetview:taptargetview:1.10.0'
 
}

If you wish to use a snapshot, please follow the instructions here

Usage

Simple usage

TapTargetView.showFor(this,

  // `this` is an Activity
  TapTarget.forView(findViewById(R.id.target), "This is a target", "We have the best targets, believe me")

// All options below are optional

.outerCircleColor(R.color.red)

// Specify a color for the outer circle  .outerCircleAlpha(0.96f)

// Specify the alpha amount for the outer circle

.targetCircleColor(R.color.white)
// Specify a color for the target circle

.titleTextSize(20)

// Specify the size (in sp) of the title text

.titleTextColor(R.color.white)

// Specify the color of the title text

.descriptionTextSize(10)

// Specify the size (in sp) of the description text

.descriptionTextColor(R.color.red)  // Specify the color of the description text

.textColor(R.color.blue)

// Specify a color for both the title and description text

.textTypeface(Typeface.SANS_SERIF)  // Specify a typeface for the text

.dimColor(R.color.black)

// If set, will dim behind the view with 30% opacity of the given color

.drawShadow(true)

 // Whether to draw a drop shadow or not

.cancelable(false)

// Whether tapping outside the outer circle dismisses the view

.tintTarget(true)

 // Whether to tint the target view's color

.transparentTarget(false)

  // Specify whether the target is transparent (displays the content underneath)

.icon(Drawable)

// Specify a custom drawable to draw as the target

.targetRadius(60),

// Specify the target radius (in dp)
  new TapTargetView.Listener() {

 // The listener can listen for regular clicks, long clicks or cancels

@Override

public void onTargetClick(TapTargetView view) {

 super.onTargetClick(view);

// This call is optional

 doSomething();

}

  
}
);

You may also choose to target your own custom Rect with TapTarget.forBounds(Rect, ...)

Additionally, each color can be specified via a @ColorRes or a @ColorInt. Functions that have the suffix Int take a @ColorInt.

Tip: When targeting a Toolbar item, be careful with Proguard and ensure you're keeping certain fields. See #180

Sequences

You can easily create a sequence of tap targets with TapTargetSequence:

new TapTargetSequence(this)
  .targets(

TapTarget.forView(findViewById(R.id.never), "Gonna"),

TapTarget.forView(findViewById(R.id.give), "You", "Up")

  .dimColor(android.R.color.never)

  .outerCircleColor(R.color.gonna)

  .targetCircleColor(R.color.let)

  .textColor(android.R.color.you),

TapTarget.forBounds(rickTarget, "Down", ":^)")

  .cancelable(false)

  .icon(rick))
  .listener(new TapTargetSequence.Listener() {

// This listener will tell us when interesting(tm) events happen in regards

// to the sequence

@Override

public void onSequenceFinish() {

 // Yay

}

@Override

public void onSequenceStep(TapTarget lastTarget) {

// Perfom action for the current target

}

 @Override

public void onSequenceCanceled(TapTarget lastTarget) {

 // Boo

}

  
}
);

A sequence is started via a call to start() on the TapTargetSequence instance

For more examples of usage, please look at the included sample app.

Xamarin

Thanks to @btripp, you may now use this library via a Xamarin Binding located here.

License

Copyright 2016 Keepsafe Software Inc.  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 distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 

Resources

The CurtainView is much like a layer on the top level of your layout. It's also a container which can wrap other Views.

It will not block the actions of the child view unless you make a standard pull event.

Training courses to acquire basic knowledge and practical skills of Android app development.

JFYI: You could use Google Translate to translate from Japanese.

Helper object for injecting typeface into various text views of android.

We can use various custom typefaces asset for any text views (like TextView, Button, RadioButton, EditText, etc.), but there's no way to set the typeface as a styled theme to apply the typeface for overall screens in the app.

This library helps to do it in easy way. :)

CWAC-Presentation: Second Screens Supported Succinctly

This project offers a series of classes that wrap around the Presentation and DisplayManager of Android 4.2.

This project offers a StreamProvider, based on Google's FileProvider. Like FileProvider, StreamProvider is designed to serve up files, for reading and writing, through the ContentProvider interface (content:// Uri values). StreamProvider offers:

  • Serving files from assets and raw resources
  • Serving files from getExternalFilesDir() and getExternalCacheDir()

This is a simple Android View class which provides basic pinch and zoom capability for images.

Can be used as a replacement for a standard ImageView when you want to include pinch and zoom.

Features:

  • Pinch zoom in place (i.e. zoom occurs from point of touch)
  • Panning with fling gesture
  • Double tap zoom
  • Configurable zoom boundaries (min/max)

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes