When using FragmentScenario
from androidx.fragment:fragment-testing
to test fragment UI, not all styles are applied correctly.
As an example, there's very simple application that just presents fragment with following layout:
fragment_main.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="8dp">
<TextView
android:id="@+id/textView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:gravity="center"
android:text="Hello World!"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
with default theme generated by Android Studio (4.1.2) that looks like this when running the app:
doesn't look the same when run as a FragmentScenario
test:
I can understand that ActionBar
is not shown (as it is a part of host Activity
not a Fragment
). But why Button
is not styled correctly ... ??
As others have commented
FragmentScenario
will launch yourFragment
in aEmptyFragmentActivity
(defined within theFragmentScenario
class) by default this uses theR.style.FragmentScenarioEmptyFragmentActivityTheme
.To ensure our tests use the correct theme we supply our theme
Theme_App
to thethemeResId
param (as well as any Arguments) and it renders correctly.