mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
33 lines
1.1 KiB
XML
33 lines
1.1 KiB
XML
![]() |
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:paddingLeft="10dp"
|
||
|
android:paddingRight="10dp" >
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/tag_negative"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_alignParentLeft="true"
|
||
|
android:src="@drawable/classify_negative" />
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/tag_positive"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_alignParentRight="true"
|
||
|
android:src="@drawable/classify_positive" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/dialog_message"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_centerInParent="true"
|
||
|
android:layout_toLeftOf="@id/tag_positive"
|
||
|
android:layout_toRightOf="@id/tag_negative"
|
||
|
android:gravity="center_horizontal"
|
||
|
android:padding="10dp"
|
||
|
android:textSize="20dp" />
|
||
|
|
||
|
</RelativeLayout>
|