We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
it seems that user is able to proceed, but digits are not shown, which is undesirable PinView is in a RecyclerView, code is below. got a video:
class BmgPinView( val pin: String, val callback: (String) -> Unit, ) : DisplayDiffItem(R.layout.item_bmg_pinview, "bmg_pin", "") { class ViewHolder(view: View) : DisplayViewHolder<BmgPinView>(view) { override fun bind(item: BmgPinView) { pin_view.setText(item.pin) pin_view.doAfterTextChanged { item.callback(it) } } } }
<?xml version="1.0" encoding="utf-8"?> <FrameLayout 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="wrap_content" android:layout_marginHorizontal="@dimen/activity_horizontal_margin" android:layout_marginTop="16dp"> <com.chaos.view.PinView android:id="@+id/pin_view" style="@style/PinWidget.PinView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" android:cursorVisible="true" android:imeOptions="actionDone" android:inputType="number" android:paddingTop="20dp" android:paddingBottom="10dp" android:textSize="16sp" app:itemCount="4" app:itemHeight="65dp" app:itemRadius="15dp" app:itemWidth="65dp" app:lineColor="@color/defaultBg" tools:text="1234" /> </FrameLayout>
The text was updated successfully, but these errors were encountered:
@ildar2 Is something changes if you provide textColor attribute?
textColor
Sorry, something went wrong.
This is serious issue !!! it's occurring on latest version
No branches or pull requests
Info:
Description:
it seems that user is able to proceed, but digits are not shown, which is undesirable
PinView is in a RecyclerView, code is below.
got a video:
t_video5415848847089863359.mp4
The text was updated successfully, but these errors were encountered: