63 lines
2.8 KiB
XML
63 lines
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical"
|
|
android:id="@+id/list_anticipation_time"
|
|
android:background="@color/black"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@+id/container_creation">
|
|
<LinearLayout
|
|
android:orientation="horizontal"
|
|
android:background="@android:color/transparent"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginBottom="8dp"
|
|
android:weightSum="1"
|
|
app:layout_constraintStart_toStartOf="@+id/text_view_acticipation_time"
|
|
app:layout_constraintTop_toBottomOf="@+id/text_view_acticipation_time">
|
|
<com.adif.elcanomovil.commonViews.DayView
|
|
android:id="@+id/anticipation_time_one"
|
|
android:background="@color/black"
|
|
android:layout_width="75dp"
|
|
android:layout_height="50dp"
|
|
android:contentDescription="@string/anticipation_time_n1"/>
|
|
<Space
|
|
android:layout_width="5dp"
|
|
android:layout_height="wrap_content"/>
|
|
<com.adif.elcanomovil.commonViews.DayView
|
|
android:id="@+id/anticipation_time_two"
|
|
android:background="@color/black"
|
|
android:layout_width="75dp"
|
|
android:layout_height="50dp"/>
|
|
<Space
|
|
android:layout_width="5dp"
|
|
android:layout_height="wrap_content"/>
|
|
<com.adif.elcanomovil.commonViews.DayView
|
|
android:id="@+id/anticipation_time_three"
|
|
android:background="@color/black"
|
|
android:layout_width="75dp"
|
|
android:layout_height="match_parent"/>
|
|
</LinearLayout>
|
|
<TextView
|
|
android:id="@+id/text_view_acticipation_time"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="4dp"
|
|
android:text="@string/text_duration_journey"
|
|
app:layout_constraintStart_toEndOf="@+id/imageView2"
|
|
app:layout_constraintTop_toTopOf="@+id/imageView2"
|
|
style="@style/TextSubscriptionMini"/>
|
|
<ImageView
|
|
android:id="@+id/imageView2"
|
|
android:padding="4dp"
|
|
android:layout_width="45dp"
|
|
android:layout_height="45dp"
|
|
android:layout_marginTop="8dp"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:srcCompat="@drawable/ic_service_opening_hours"/>
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|