<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:gravity="center"
|
android:orientation="horizontal"
|
android:padding="10dp">
|
|
<ImageView
|
android:id="@+id/direction"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:paddingLeft="10dp"
|
android:paddingRight="10dp" />
|
|
<com.google.android.flexbox.FlexboxLayout
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
app:flexWrap="wrap"
|
app:justifyContent="center">
|
|
<TextView
|
android:id="@+id/date"
|
style="@style/call_log_detail_font"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:paddingRight="10dp" />
|
|
<TextView
|
android:id="@+id/time"
|
style="@style/call_log_detail_font"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content" />
|
|
</com.google.android.flexbox.FlexboxLayout>
|
|
</LinearLayout>
|