63 lines
2.8 KiB
XML
63 lines
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="#d3d3d3"
|
|
android:gravity="center" >
|
|
|
|
<ScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" >
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="5dp">
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/rl_welcome"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
>
|
|
|
|
<ImageView
|
|
android:id="@+id/img_welcome"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginBottom="20dp"
|
|
android:background="@drawable/shape_radius"
|
|
android:contentDescription="欢迎登陆"
|
|
android:src="@drawable/ic_app" />
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/img_welcome"
|
|
android:layout_centerHorizontal="true"
|
|
android:gravity="center"
|
|
android:text="在这里\nVersion 1.0"
|
|
android:textSize="12sp"
|
|
android:typeface="monospace" />
|
|
</RelativeLayout>
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/rl_welcome"
|
|
android:gravity="left"
|
|
android:lineSpacingExtra="5dp"
|
|
android:lineSpacingMultiplier="1.4"
|
|
android:text="\n 在这里,是由NUDT计算机学院团队神龙小分队开发的一款社区移动生活类手机App.
|
|
在这里集多功能与一身,可以轻松让你获得校园一手资讯,集教学、娱乐、购物、出行于一身,相信会是你生活的得力助手。
|
|
\n 神龙小分队一直致力于在这里的开发工作,希望能够得到更多校友的支持与建议,我们将不断的更新和完善。同时也乐意和相关的校友合作,欢迎联系神龙小分队。
|
|
\n\n联系方式:
|
|
\n联系人 神龙小分队
|
|
\n电话 15575939962
|
|
\nQQ 1453505201"
|
|
android:textSize="12sp"
|
|
android:typeface="monospace" />
|
|
</RelativeLayout>
|
|
</ScrollView>
|
|
</RelativeLayout> |