mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 19:38:08 +00:00
76 lines
No EOL
2.7 KiB
XML
76 lines
No EOL
2.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<data>
|
|
<import type="android.view.View"/>
|
|
<variable
|
|
name="title"
|
|
type="String" />
|
|
<variable
|
|
name="subtitle"
|
|
type="String" />
|
|
<variable
|
|
name="enabled"
|
|
type="Boolean" />
|
|
<variable
|
|
name="icon"
|
|
type="android.graphics.drawable.Drawable" />
|
|
<variable
|
|
name="listener"
|
|
type="org.linphone.activities.main.settings.SettingListener" />
|
|
</data>
|
|
|
|
<RelativeLayout
|
|
android:onClick="@{() -> listener.onClicked()}"
|
|
android:enabled="@{enabled ?? true}"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<ImageView
|
|
android:id="@+id/icon"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:adjustViewBounds="true"
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_centerVertical="true"
|
|
android:src="@{icon}" />
|
|
|
|
<org.linphone.views.MarqueeTextView
|
|
android:id="@+id/settings_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@{title}"
|
|
android:enabled="@{enabled ?? true}"
|
|
android:visibility="@{title.length() > 0 ? View.VISIBLE : View.GONE}"
|
|
android:singleLine="true"
|
|
android:layout_marginTop="15dp"
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_marginRight="10dp"
|
|
android:layout_toRightOf="@id/icon"
|
|
style="@style/settings_item_font"/>
|
|
|
|
<org.linphone.views.MarqueeTextView
|
|
android:id="@+id/settings_subtitle"
|
|
android:text="@{subtitle}"
|
|
android:enabled="@{enabled ?? true}"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:visibility="@{subtitle.length() > 0 ? View.VISIBLE : View.GONE}"
|
|
android:singleLine="true"
|
|
android:layout_below="@id/settings_title"
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_marginRight="10dp"
|
|
android:layout_toRightOf="@id/icon"
|
|
style="@style/settings_item_subtitle_font"/>
|
|
|
|
<View
|
|
android:layout_marginTop="15dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:layout_below="@id/settings_subtitle"
|
|
android:background="?attr/dividerColor" />
|
|
|
|
</RelativeLayout>
|
|
|
|
</layout> |