feat: implemented album and song sharing

This commit is contained in:
antonio 2023-09-17 16:46:21 +02:00
parent f172a00fb7
commit 26b8f3f65c
6 changed files with 83 additions and 2 deletions

View file

@ -172,5 +172,18 @@
android:paddingEnd="20dp"
android:paddingBottom="12dp"
android:text="@string/album_bottom_sheet_go_to_artist" />
<TextView
android:id="@+id/share_text_view"
style="@style/LabelMedium"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/selectableItemBackground"
android:clickable="true"
android:paddingStart="20dp"
android:paddingTop="12dp"
android:paddingEnd="20dp"
android:paddingBottom="12dp"
android:text="@string/album_bottom_sheet_share" />
</LinearLayout>
</LinearLayout>

View file

@ -195,5 +195,17 @@
android:paddingBottom="12dp"
android:text="@string/song_bottom_sheet_go_to_artist" />
<TextView
android:id="@+id/share_text_view"
style="@style/LabelMedium"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/selectableItemBackground"
android:clickable="true"
android:paddingStart="20dp"
android:paddingTop="12dp"
android:paddingEnd="20dp"
android:paddingBottom="12dp"
android:text="@string/song_bottom_sheet_share" />
</LinearLayout>
</LinearLayout>