24 lines
751 B
XML
24 lines
751 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:padding="10dp"
|
|
android:orientation="vertical"
|
|
android:layout_height="match_parent">
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="60dp"
|
|
android:text="贡献者: "
|
|
android:textColor="@android:color/darker_gray"
|
|
android:textSize="18sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/textView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="60dp"
|
|
android:text="aixiao(发起人)\ntheodoreshuai\n威威君"
|
|
android:textSize="20sp" />
|
|
|
|
|
|
</LinearLayout>
|