linphone-android/app/src/main/res/layout/settings_ldap_cell.xml

37 lines
No EOL
1.3 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="data"
type="org.linphone.activities.main.settings.viewmodels.LdapSettingsViewModel" />
</data>
<RelativeLayout
android:onClick="@{() -> data.ldapSettingsListener.onAccountClicked(data.index)}"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical|left">
<org.linphone.views.MarqueeTextView
android:id="@+id/settings_title"
style="@style/settings_item_font"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginTop="15dp"
android:layout_marginRight="10dp"
android:singleLine="true"
android:text="@{data.ldapServer, default=`ldap://ldap.example.org`}" />
<View
android:layout_marginTop="15dp"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_below="@id/settings_title"
android:background="?attr/dividerColor" />
</RelativeLayout>
</layout>