linphone-android/app/src/main/res/layout/call_statistics_fragment.xml
2021-04-17 10:04:18 +02:00

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>