aboutsummaryrefslogtreecommitdiff
path: root/org.fox.ttrss/src/main/res/layout/drawer_header.xml
diff options
context:
space:
mode:
authorAndrew Dolgov <fox@fakecake.org>2025-05-15 17:40:03 +0300
committerAndrew Dolgov <fox@fakecake.org>2025-05-15 17:40:03 +0300
commit8e61244404cf5027b7a4f9c7dd0e2f7419dba8ce (patch)
treebe51b460a72acb4cfc4d190970e62ae76f502006 /org.fox.ttrss/src/main/res/layout/drawer_header.xml
parent06b8a9d17b4451b16415cd22e583a2fd96099e23 (diff)
wip recycler feeds
Diffstat (limited to 'org.fox.ttrss/src/main/res/layout/drawer_header.xml')
-rwxr-xr-xorg.fox.ttrss/src/main/res/layout/drawer_header.xml70
1 files changed, 0 insertions, 70 deletions
diff --git a/org.fox.ttrss/src/main/res/layout/drawer_header.xml b/org.fox.ttrss/src/main/res/layout/drawer_header.xml
deleted file mode 100755
index f4954259..00000000
--- a/org.fox.ttrss/src/main/res/layout/drawer_header.xml
+++ /dev/null
@@ -1,70 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="72dp"
- xmlns:tools="http://schemas.android.com/tools"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:orientation="vertical"
- android:weightSum="1"
- android:clickable="false">
-
- <FrameLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent">
-
- <com.google.android.material.button.MaterialButton
- style="?attr/materialIconButtonStyle"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:scaleX="1.5"
- android:scaleY="1.5"
- app:icon="@drawable/baseline_settings_24"
- android:id="@+id/drawer_settings_btn"
- android:layout_gravity="center_vertical|end"
- android:layout_marginEnd="8dp"
- android:transitionName="SETTINGS_REVEAL"
- />
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:layout_alignParentBottom="true"
- android:layout_alignParentLeft="true"
- android:layout_alignParentStart="true"
- android:id="@+id/linearLayout"
- android:layout_gravity="center_horizontal|bottom">
-
- <TextView
- android:id="@+id/drawer_header_login"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginStart="16dp"
- tools:text="user"
- android:textAppearance="?attr/textAppearanceHeadlineSmall"
- android:textColor="?attr/colorOnSurface"/>
-
- <TextView
- android:id="@+id/drawer_header_server"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginStart="16dp"
- android:layout_marginTop="8dp"
- android:layout_marginBottom="8dp"
- tools:text="example.org"
- android:textAppearance="?attr/textAppearanceTitleSmall"
- android:textColor="?attr/colorOnSurfaceVariant"/>
- </LinearLayout>
- </FrameLayout>
-
- <ProgressBar
- style="?android:attr/progressBarStyleHorizontal"
- android:visibility="invisible"
- android:indeterminate="true"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:id="@+id/feeds_loading_bar"
- android:layout_alignParentLeft="true"
- android:layout_alignParentBottom="true"
- android:layout_gravity="bottom" />
-</FrameLayout> \ No newline at end of file