Skip to content

Commit

Permalink
Merge pull request #421 from anzhoulin/master
Browse files Browse the repository at this point in the history
#3 #158 第三次作业
  • Loading branch information
zengsn authored Jun 11, 2017
2 parents c892331 + d98c235 commit 0b8c5dd
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
Binary file added AndroidLabs/app/src/main/res/drawable/teacher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="30dp"
android:text="家教管理系统"
android:textSize="25sp" />

<ImageView
android:src="@drawable/teacher"
android:layout_marginTop="30dp"
android:layout_gravity="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />

<Button
android:id="@+id/bt_to_add"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="60dp"
android:layout_marginRight="60dp"
android:layout_marginTop="20dp"
android:background="@color/colorPrimary"
android:text="添加家教"
android:textColor="#ffffff" />

<Button
android:id="@+id/bt_to_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="60dp"
android:layout_marginRight="60dp"
android:layout_marginTop="20dp"
android:background="@color/colorPrimary"
android:text="查看家教人員"
android:textColor="#ffffff" />
</LinearLayout>

0 comments on commit 0b8c5dd

Please sign in to comment.