From 602754104e18b4ed6b50fdd640af5d0a73f11d64 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Sun, 7 Jan 2018 16:32:54 +0100 Subject: remove reference to nonexisting onClick callback This defined onClick callback does not exist, so we don't need to specify it. --- app/src/main/res/layout/feedinfo.xml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'app/src/main/res/layout/feedinfo.xml') diff --git a/app/src/main/res/layout/feedinfo.xml b/app/src/main/res/layout/feedinfo.xml index 4b545e3cc..69b835ee1 100644 --- a/app/src/main/res/layout/feedinfo.xml +++ b/app/src/main/res/layout/feedinfo.xml @@ -313,13 +313,11 @@ + android:text="@string/episode_filters_include" /> + android:text="@string/episode_filters_exclude" /> Date: Wed, 10 Jan 2018 23:26:20 +0100 Subject: Move attributes to edittext --- app/src/main/res/layout/feedinfo.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'app/src/main/res/layout/feedinfo.xml') diff --git a/app/src/main/res/layout/feedinfo.xml b/app/src/main/res/layout/feedinfo.xml index 69b835ee1..549c8ce22 100644 --- a/app/src/main/res/layout/feedinfo.xml +++ b/app/src/main/res/layout/feedinfo.xml @@ -249,10 +249,7 @@ app:layout_row="1" app:layout_column="0" android:text="@string/password_label" - android:textColor="?android:attr/textColorPrimary" - android:focusable="true" - android:focusableInTouchMode="true" - android:cursorVisible="true"/> + android:textColor="?android:attr/textColorPrimary" /> + android:inputType="textPassword" + android:focusable="true" + android:focusableInTouchMode="true" + android:cursorVisible="true"/> -- cgit v1.2.3 From c9fdc05784b5f8c4eb7ec5be9cbde4a684e64a99 Mon Sep 17 00:00:00 2001 From: ByteHamster Date: Fri, 13 Apr 2018 15:39:51 +0200 Subject: Split feed info and settings --- app/src/main/res/layout/feedinfo.xml | 192 ----------------------------------- 1 file changed, 192 deletions(-) (limited to 'app/src/main/res/layout/feedinfo.xml') diff --git a/app/src/main/res/layout/feedinfo.xml b/app/src/main/res/layout/feedinfo.xml index 549c8ce22..4214e8f53 100644 --- a/app/src/main/res/layout/feedinfo.xml +++ b/app/src/main/res/layout/feedinfo.xml @@ -142,198 +142,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Date: Fri, 13 Apr 2018 16:23:01 +0200 Subject: Use better header in feed info and settings --- app/src/main/res/layout/feedinfo.xml | 48 +++--------------------------------- 1 file changed, 4 insertions(+), 44 deletions(-) (limited to 'app/src/main/res/layout/feedinfo.xml') diff --git a/app/src/main/res/layout/feedinfo.xml b/app/src/main/res/layout/feedinfo.xml index 4214e8f53..428571aee 100644 --- a/app/src/main/res/layout/feedinfo.xml +++ b/app/src/main/res/layout/feedinfo.xml @@ -6,48 +6,7 @@ android:layout_height="match_parent" android:orientation="vertical"> - - - - - - - - + + android:paddingBottom="8dp" + android:clipToPadding="false"> Date: Fri, 13 Apr 2018 16:26:31 +0200 Subject: Allow to select text --- app/src/main/res/layout/feedinfo.xml | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'app/src/main/res/layout/feedinfo.xml') diff --git a/app/src/main/res/layout/feedinfo.xml b/app/src/main/res/layout/feedinfo.xml index 428571aee..bb544d289 100644 --- a/app/src/main/res/layout/feedinfo.xml +++ b/app/src/main/res/layout/feedinfo.xml @@ -49,6 +49,7 @@ android:id="@+id/txtvDetailsAuthor" android:layout_width="wrap_content" android:layout_height="wrap_content" + android:textIsSelectable="true" app:layout_row="0" app:layout_column="1" tools:text="Daniel Oeh" @@ -71,6 +72,7 @@ android:id="@+id/txtvLanguage" android:layout_width="wrap_content" android:layout_height="wrap_content" + android:textIsSelectable="true" app:layout_row="1" app:layout_column="1" tools:text="English" @@ -93,6 +95,7 @@ android:layout_width="0dp" android:layout_height="wrap_content" android:paddingBottom="4dp" + android:background="?attr/selectableItemBackground" app:layout_row="2" app:layout_column="1" app:layout_gravity="fill" @@ -114,6 +117,7 @@ android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="8dp" + android:textIsSelectable="true" android:text="@string/design_time_lorem_ipsum" tools:background="@android:color/holo_green_dark"/> -- cgit v1.2.3 From ff18c72c670a2cbebba665d78b913f2aba2f8d39 Mon Sep 17 00:00:00 2001 From: Mostafa Ahangarha Date: Fri, 23 Nov 2018 23:34:08 +0330 Subject: Improve RTL support For all the layout elements having margin, padding,... to right or left, releavnt start/end property is added so all the elements are supposed to be displayed properly in RTL mode. There are still minor issues related to some icons such as play, ff and rev. This issue must be addressed separately in future. --- app/src/main/res/layout/feedinfo.xml | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'app/src/main/res/layout/feedinfo.xml') diff --git a/app/src/main/res/layout/feedinfo.xml b/app/src/main/res/layout/feedinfo.xml index bb544d289..50061c4d8 100644 --- a/app/src/main/res/layout/feedinfo.xml +++ b/app/src/main/res/layout/feedinfo.xml @@ -36,7 +36,9 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentLeft="true" + android:layout_alignParentStart="true" android:layout_marginRight="8dp" + android:layout_marginEnd="8dp" android:layout_marginBottom="8dp" app:layout_row="0" app:layout_column="0" @@ -60,6 +62,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginRight="8dp" + android:layout_marginEnd="8dp" android:layout_marginBottom="8dp" app:layout_row="1" app:layout_column="0" @@ -83,6 +86,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginRight="8dp" + android:layout_marginEnd="8dp" app:layout_row="2" app:layout_column="0" android:lines="1" -- cgit v1.2.3