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

Commit 5d7be558 authored by Sayantan Roychowdhury's avatar Sayantan Roychowdhury
Browse files

issue_5680_3.1: define dialog error layout, to be used later

parent 34bacf36
Loading
Loading
Loading
Loading
+34 −0
Original line number Diff line number Diff line
<?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"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:padding="20dp"
    >

    <TextView
        android:id="@+id/more_info"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/more_info"
        android:textColor="@color/colorAccent"
        android:layout_marginTop="10dp"
        android:clickable="true"
        android:focusable="true"
        android:layout_gravity="end"
        />

    <TextView
        android:id="@+id/log_display"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceSmall"
        android:padding="10dp"
        android:background="@color/colorGrey2"
        android:fontFamily="serif-monospace"
        android:visibility="gone"
        tools:text="@tools:sample/lorem/random"
        />

</LinearLayout>
 No newline at end of file