Skip to content

Commit 7bbb4d6

Browse files
Merge pull request #14 from thesohelshaikh/fix-usecase7
Fix usecase 7 not showing entire response
2 parents 20389d6 + 9d77c91 commit 7bbb4d6

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

app/src/main/res/layout/activity_retrynetworkrequest.xml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,18 @@
2828
android:layout_marginBottom="32dp"
2929
android:visibility="invisible" />
3030

31-
<TextView
32-
android:id="@+id/textViewResult"
31+
<ScrollView
3332
android:layout_width="match_parent"
34-
android:layout_height="match_parent"
35-
android:textColor="@color/primary_text"
36-
android:textSize="16sp" />
33+
android:layout_height="match_parent">
34+
35+
<TextView
36+
android:id="@+id/textViewResult"
37+
android:layout_width="match_parent"
38+
android:layout_height="wrap_content"
39+
android:textColor="@color/primary_text"
40+
android:textSize="16sp" />
41+
42+
</ScrollView>
3743

3844
</LinearLayout>
3945

0 commit comments

Comments
 (0)