Fixed
Status Update
Comments
ar...@google.com <ar...@google.com> #2
Can you provide the below requested information to better understand the issue:
Steps to reproduce
What steps do others need to take in order to reproduce the issue themselves?
Please provide sample application or apk to reproduce the issue.
Also kindly mention the steps to reproduce the issue using the sample application or apk.
Frequency
How frequently does this issue occur? (e.g 100% of the time, 10% of the time)
Expected output
What do you expect to occur?
Current output
What do you see instead?
Steps to reproduce
What steps do others need to take in order to reproduce the issue themselves?
Please provide sample application or apk to reproduce the issue.
Also kindly mention the steps to reproduce the issue using the sample application or apk.
Frequency
How frequently does this issue occur? (e.g 100% of the time, 10% of the time)
Expected output
What do you expect to occur?
Current output
What do you see instead?
gr...@pocketmatter.com <gr...@pocketmatter.com> #3
Hi,
The issue happens 100% of the time when running espresso tests in the "ar_XB" locale. I am working on a sample app to show the issue.
Expected behavior would be successful rendering, but instead the app crashes when rendering the layout.
The issue happens 100% of the time when running espresso tests in the "ar_XB" locale. I am working on a sample app to show the issue.
Expected behavior would be successful rendering, but instead the app crashes when rendering the layout.
ar...@google.com <ar...@google.com>
gr...@pocketmatter.com <gr...@pocketmatter.com> #4
Hi,
I have added a sample project athttps://github.com/kkoser/SupportLibRTLCrash . The crash happens when running tests in the "ar_XB" (right to left psuedolocale) locale, but not in other RTL locales. The locale for the test is set in onStart() of the test runner. To reproduce this crash, just run the test in "ExampleInstrumentedTest.java" from Android Studio.
Let me know if there's any more information you need!
I have added a sample project at
Let me know if there's any more information you need!
Description
Version used: 25.1.0
Theme used: Theme.Design.Light.NoActionBar
Devices/Android versions reproduced on: Nexus 5x API 25 emulator (latest) on macOS Sierra 10.12.1
In r25.1.0, using the physical laptop keyboard "Tab" button to navigate, the "eye" icon gets focus first instead of the password EditText.
This does not happen in r25.0.1
Current: the focus is on the eye, then next "Tab" focuses on the password EditText (refer attachment 1 -> 2 -> 3)
Expected: the focus should be on the edittext first THEN the eye (image: 1 -> 3 -> 2)
- Relevant code to trigger the issue.
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.design.widget.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:singleLine="true"
android:text="@={register.email}" />
</android.support.design.widget.TextInputLayout>
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:passwordToggleEnabled="true">
<android.support.design.widget.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textPassword|textWebPassword"
android:singleLine="true"
android:text="@={register.password}" />
</android.support.design.widget.TextInputLayout>
- A screenrecord or screenshots showing the issue (if UI related).