diff options
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/xml/preference.xml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/app/src/main/res/xml/preference.xml b/app/src/main/res/xml/preference.xml index 97214ceb..d52570d5 100644 --- a/app/src/main/res/xml/preference.xml +++ b/app/src/main/res/xml/preference.xml @@ -3,13 +3,16 @@ <PreferenceCategory android:title="Git"> <EditTextPreference android:title="Server" android:key="git_remote_server" - android:hint="server.com"/> + android:hint="server.com" + android:inputType="textUri"/> <EditTextPreference android:title="Remote location" android:key="git_remote_location" - android:hint="path/to/repository"/> + android:hint="path/to/repository" + android:inputType="textUri"/> <EditTextPreference android:title="Username" android:key="git_remote_username" - android:hint="username"/> + android:hint="username" + android:inputType="textPersonName"/> <Preference android:title="SSH Key" android:key="ssh_key"/> |