mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
91 lines
No EOL
3.3 KiB
XML
91 lines
No EOL
3.3 KiB
XML
<?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"
|
|
android:orientation="horizontal" >
|
|
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:scaleType="fitXY"
|
|
android:src="@drawable/selector_left" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:background="@drawable/selector_center"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal" >
|
|
|
|
<TextView
|
|
android:id="@+id/toggle_all"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginLeft="10dp"
|
|
android:gravity="center"
|
|
android:layout_weight="1"
|
|
android:text="All"
|
|
android:textColor="@color/button_state_text_selector"
|
|
android:textSize="20sp"
|
|
android:textStyle="bold" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:layout_marginLeft="20dp"
|
|
android:layout_marginRight="20dp"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal" >
|
|
|
|
<ImageView
|
|
android:layout_width="7dp"
|
|
android:layout_height="7dp"
|
|
android:src="@drawable/neutral_simple_circle" />
|
|
|
|
<TextView
|
|
android:id="@+id/toggle_some"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginLeft="4dp"
|
|
android:gravity="center"
|
|
android:enabled="false"
|
|
android:text="Unread"
|
|
android:textColor="@color/button_state_text_selector"
|
|
android:textSize="20sp"
|
|
android:textStyle="bold" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal" >
|
|
|
|
<ImageView
|
|
android:layout_width="7dp"
|
|
android:layout_height="7dp"
|
|
android:src="@drawable/positive_simple_circle" />
|
|
|
|
<TextView
|
|
android:id="@+id/toggle_focus"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginLeft="4dp"
|
|
android:gravity="center"
|
|
android:layout_marginRight="10dp"
|
|
android:text="Focus"
|
|
android:textColor="@color/button_state_text_selector"
|
|
android:textSize="20sp"
|
|
android:textStyle="bold" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:scaleType="fitXY"
|
|
android:src="@drawable/selector_right" />
|
|
|
|
</LinearLayout> |