mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-04-23 01:18:30 +00:00
38 lines
No EOL
1.4 KiB
XML
38 lines
No EOL
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<data>
|
|
<import type="android.view.View" />
|
|
<import type="android.graphics.Typeface" />
|
|
<variable
|
|
name="manageProfileClickListener"
|
|
type="View.OnClickListener" />
|
|
</data>
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/shape_round_popup_menu_background">
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
android:onClick="@{manageProfileClickListener}"
|
|
style="@style/default_text_style"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="20dp"
|
|
android:text="Manage the profile"
|
|
android:textSize="14sp"
|
|
android:textColor="@color/gray_1"
|
|
android:drawableStart="@drawable/manage_profile"
|
|
android:drawablePadding="5dp"
|
|
app:drawableTint="@color/gray_8"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintBottom_toBottomOf="parent"/>
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
</layout> |