mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-04-21 03:38:29 +00:00
28 lines
No EOL
969 B
XML
28 lines
No EOL
969 B
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" />
|
|
<variable
|
|
name="viewModel"
|
|
type="org.linphone.activities.call.viewmodels.StatisticsListViewModel" />
|
|
</data>
|
|
|
|
<androidx.core.widget.NestedScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="?attr/backgroundColor"
|
|
android:clickable="true">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/backgroundColor"
|
|
android:orientation="vertical"
|
|
app:entries="@{viewModel.callStatsList}"
|
|
app:layout="@{@layout/call_statistics_cell}" />
|
|
|
|
</androidx.core.widget.NestedScrollView>
|
|
|
|
</layout> |