summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/feedinfo.xml
diff options
context:
space:
mode:
authorTom Hennen <TomHennen@users.noreply.github.com>2015-07-10 21:33:01 -0400
committerTom Hennen <TomHennen@users.noreply.github.com>2015-07-10 21:33:01 -0400
commitf7e4beadd66bc561a4f2d83cb5afc9730e2e1a8e (patch)
treebaeb4c8416001de48b203781a3c06d79bc41aef0 /app/src/main/res/layout/feedinfo.xml
parent8516ca126780d088ed3b1e4f3c241b16f18e77ad (diff)
parent40fd08b8415ca3d4cfbd0051682dcda1c8958f25 (diff)
downloadAntennaPod-f7e4beadd66bc561a4f2d83cb5afc9730e2e1a8e.zip
Merge pull request #1004 from mfietz/issue/992-fix-paste
Fix edittext pasting issues on some devices
Diffstat (limited to 'app/src/main/res/layout/feedinfo.xml')
-rw-r--r--app/src/main/res/layout/feedinfo.xml10
1 files changed, 8 insertions, 2 deletions
diff --git a/app/src/main/res/layout/feedinfo.xml b/app/src/main/res/layout/feedinfo.xml
index 6a0fab7e3..edae51847 100644
--- a/app/src/main/res/layout/feedinfo.xml
+++ b/app/src/main/res/layout/feedinfo.xml
@@ -235,7 +235,10 @@
android:layout_height="wrap_content"
app:layout_row="0"
app:layout_column="1"
- android:hint="@string/username_label"/>
+ android:hint="@string/username_label"
+ android:focusable="true"
+ android:focusableInTouchMode="true"
+ android:cursorVisible="true"/>
<TextView
android:id="@+id/txtvPassword"
@@ -246,7 +249,10 @@
app:layout_row="1"
app:layout_column="0"
android:text="@string/password_label"
- android:textColor="?android:attr/textColorPrimary"/>
+ android:textColor="?android:attr/textColorPrimary"
+ android:focusable="true"
+ android:focusableInTouchMode="true"
+ android:cursorVisible="true"/>
<EditText
android:id="@+id/etxtPassword"