-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #421 from anzhoulin/master
- Loading branch information
Showing
2 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
43 changes: 43 additions & 0 deletions
43
AndroidLabs/app/src/main/res/layout/activity_net1414080903119_main.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |