discord-jadx/app/src/main/res/layout/widget_chat_list_adapter_item_search_error.xml
Juby210 02b39b5eaf
Enable replacing const values in jadx
Tracking changes should be much easier now.
2021-08-10 00:50:52 +02:00

6 lines
861 B
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:gravity="center" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_marginLeft="10dp" android:layout_marginRight="10dp">
<ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="?attr/theme_search_broken_results" android:layout_above="@+id/chat_list_search_error_text" android:layout_centerHorizontal="true"/>
<TextView android:textSize="15sp" android:textColor="?attr/colorTextNormal" android:gravity="center" android:id="@+id/chat_list_search_error_text" android:layout_marginTop="10dp" android:text="@string/search_error" android:layout_alignParentBottom="true" android:layout_centerHorizontal="true" style="@style/UiKit_TextView"/>
</RelativeLayout>