Mercurial > cgi-bin > hgweb.cgi > SimpleResizer
view app/src/main/res/layout/activity_about.xml @ 46:8205f3c17500 default tip
Tweak messages a little.
author | David Barts <n5jrn@me.com> |
---|---|
date | Wed, 14 Apr 2021 08:18:23 -0700 |
parents | cfb19d4ccf78 |
children |
line wrap: on
line source
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".About"> <ScrollView android:layout_width="wrap_content" android:layout_height="wrap_content"> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical" android:padding="15dp"> <TextView android:id="@+id/about_copyright" android:layout_width="match_parent" android:layout_height="wrap_content" android:linksClickable="true" android:text="This is the copyright message." /> <TextView android:id="@+id/about_body" android:layout_width="match_parent" android:layout_height="wrap_content" android:linksClickable="true" android:text="This is the main body." /> <TextView android:id="@+id/about_promo" android:layout_width="match_parent" android:layout_height="wrap_content" android:linksClickable="true" android:text="This is the promo message." /> </LinearLayout> </ScrollView> </LinearLayout>