Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 69c69402 authored by Vincent Bourgmayer's avatar Vincent Bourgmayer
Browse files

task: temporarily disabled textView's style property which caused layout inflation failure

parent 7a9d3f3f
Loading
Loading
Loading
Loading
+6 −8
Original line number Diff line number Diff line
@@ -2,7 +2,6 @@
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/pick_calendar_dialog"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools">

@@ -58,7 +57,6 @@

    <TextView
        android:id="@+id/calendar_textview"
        style="@style/TextAppearance.EditEvent"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="12dp"
@@ -69,22 +67,23 @@
        tools:layout_conversion_absoluteHeight="24dp"
        tools:layout_conversion_absoluteWidth="363dp" />

    <!-- style="@style/TextAppearance.EditEvent"-->

    <TextView
        android:id="@+id/calendar_textview_secondary"
        style="@style/TextAppearance.EditEvent"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="12dp"
        android:layout_marginTop="2dp"
        android:layout_marginBottom="4dp"
        android:textColor="?attr/light_dark"
        android:textSize="14sp"
        app:layout_constraintBottom_toTopOf="@+id/view1"
        app:layout_constraintStart_toEndOf="@+id/calendar_selector_group_icon"
        app:layout_constraintTop_toBottomOf="@+id/calendar_textview"
        android:textColor="?attr/light_dark"
        tools:layout_conversion_absoluteHeight="19dp"
        tools:layout_conversion_absoluteWidth="363dp"/>

    <!-- style="@style/TextAppearance.EditEvent"-->
    <ImageButton
        android:id="@+id/change_color_new_event"
        android:layout_width="0dp"
@@ -101,5 +100,4 @@
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="@+id/view" />


</androidx.constraintlayout.widget.ConstraintLayout>