Files
doerflingerhelpers/app/src/main/res/layout/active_share_view_holder.xml
Alexander Dörflinger eab7153ea1 [ShareLocation] Added background service functionality
Now the sharing of the location should also be working from
the background.
2025-03-21 13:37:32 +01:00

30 lines
1.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="75dp"
android:layout_height="75dp"
android:background="@drawable/currently_followed_user_selector"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools">
<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/active_share_profile_picture"
android:layout_width="50dp"
android:layout_height="50dp"
app:civ_border_width="2dp"
app:civ_border_color="#FF000000"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
<TextView
android:id="@+id/active_share_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="11sp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
android:gravity="center"
tools:text="Alexander Dörflinger"
app:layout_constraintTop_toBottomOf="@id/active_share_profile_picture"/>
</androidx.constraintlayout.widget.ConstraintLayout>