diff options
| author | Jules Aguillon | 2023-08-04 17:31:06 +0200 |
|---|---|---|
| committer | Jules Aguillon | 2023-08-04 17:31:06 +0200 |
| commit | 8b9505356629f81340090cee4f8f1f0bb9c399be (patch) | |
| tree | ab8eb6e22e21c097b87dfa71eae16bce51e866e1 /res/layout/launcher_activity.xml | |
| parent | e0dd145bb4ff0e583cad9ed07107b26e79e80fb3 (diff) | |
| download | unexpected-keyboard-8b9505356629f81340090cee4f8f1f0bb9c399be.tar.gz unexpected-keyboard-8b9505356629f81340090cee4f8f1f0bb9c399be.zip | |
LauncherActivity: Visible, clickable and untranslatable link
The link to Github was not clickable and couldn't easily be made so in
its current form.
Render the link in its own paragraph and do not hide the URL.
Diffstat (limited to 'res/layout/launcher_activity.xml')
| -rw-r--r-- | res/layout/launcher_activity.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/res/layout/launcher_activity.xml b/res/layout/launcher_activity.xml index dbd6b33..5206405 100644 --- a/res/layout/launcher_activity.xml +++ b/res/layout/launcher_activity.xml @@ -2,7 +2,8 @@ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical"> <TextView style="@style/paragraph" android:text="@string/launcher_description"/> <Button style="@style/paragraph" android:text="@string/launcher_button_imesettings" android:onClick="launch_imesettings" android:layout_width="wrap_content"/> - <TextView style="@style/paragraph" android:text="@string/launcher_sourcecode" android:autoLink="web"/> + <TextView style="@style/paragraph" android:text="@string/launcher_sourcecode"/> + <TextView style="@style/paragraph" android:text="https://github.com/Julow/Unexpected-Keyboard" android:autoLink="web" android:linksClickable="true"/> <TextView android:id="@+id/launcher_tryhere_text" style="@style/paragraph" android:text="@string/launcher_tryhere"/> <EditText android:id="@+id/launcher_tryhere_area" style="@style/paragraph" android:inputType="text"/> </LinearLayout> |
