Skip to content

pdrozz/pinview

Repository files navigation

PinView

Provides a widget for enter PASSWORD/OTP code etc on Android 5+ (API 22).

Dependency

JitPack

allprojects {
  repositories {
    ...
    maven { url 'https://jitpack.io' }
  }
}

dependencies {
  implementation 'com.github.pdrozz:pinview:1.0.3'
}

Usage

Step 1:

Add PinView in your layout.

XML

<com.pdrozz.view.PinView
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  app:pinCount="5"
  app:isPassword="true"
  app:pinPadding="6dp"
  android:textSize="30sp"
  android:textColor="#000000"
  android:textStyle="bold"
  android:fontFamily="@font/sf_pro_medium"
  app:layout_constraintBottom_toBottomOf="parent"
  app:layout_constraintLeft_toLeftOf="parent"
  app:layout_constraintRight_toRightOf="parent"
  app:layout_constraintTop_toTopOf="parent" />

Kotlin

pinView.text = "12345"
pinView.clear()
pinView.setIsEnabled(false)
pinView.requestFocusToPin()
pinView.requestFocusToPin(pinIndex = 1)
pinView.setPinBackground(R.drawable.background_pin_item)
pinView.onTextChangedListener = { text ->
    Log.d("PinViewSample", "onCreate: $text")
}

Step 2 (Optional):

Specifies pinViewStyle in your theme,

<style name="AppTheme" parent="Theme.AppCompat.Light">
    ...
    <item name="pinViewStyle">@style/pinViewStyle</item>
</style>

<style name="pinViewStyle" parent="Widget.AppTheme.PinView">
    <item name="pinCount">6</item>
    <item name="pinPadding">4dp</item>
    <item name="isPassword">false</item>
</style>

or use the PinWidget.PinView style.

<com.chaos.view.PinView
    android:id="@+id/pinView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    style="@style/pinViewStyle" />

Step 3 (Optional):

You can use any drawable state using selector to pin item background

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    ...
    <item android:state_focused="true">
        <shape android:shape="rectangle">
            <corners android:radius="6dp" />
            <stroke android:width="1dp" android:color="@color/focused_color" />
        </shape>
    </item>
</selector>

About

A PIN view customizable for Android. To use with PIN/Pass and others

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •  

Languages

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy