Skip to content

Commit

Permalink
add scrolling for stamps
Browse files Browse the repository at this point in the history
  • Loading branch information
hettysymes committed Jun 15, 2023
1 parent 2081be9 commit 761ad49
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions app/src/main/res/layout/activity_user_profile.xml
Original file line number Diff line number Diff line change
Expand Up @@ -169,14 +169,20 @@
android:textAlignment="center"
android:visibility="gone"/>

<LinearLayout
android:id="@+id/stamp_layout"
<HorizontalScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/text_margin_32"
android:layout_marginRight="@dimen/text_margin_32"
android:orientation="horizontal"
android:visibility="gone"/>
android:layout_height="wrap_content">

<LinearLayout
android:id="@+id/stamp_layout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/text_margin_32"
android:layout_marginRight="@dimen/text_margin_32"
android:orientation="horizontal"
android:visibility="gone"/>

</HorizontalScrollView>

<Button
android:id="@+id/profile_match_button"
Expand Down

0 comments on commit 761ad49

Please sign in to comment.