forked from hzuapps/android-labs-2020
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
hzuapps#3 hzuapps#329 提交第三次实验+修改第二次实验
- Loading branch information
Showing
3 changed files
with
43 additions
and
2 deletions.
There are no files selected for viewing
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
41 changes: 41 additions & 0 deletions
41
students/sec1814080911130/app/src/main/res/layout/activity_sec1814080911130.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,41 @@ | ||
<?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="fill_parent" | ||
android:layout_height="match_parent" | ||
tools:context="edu.hzuapps.androidlabs.Sec1814080911130Activity" | ||
android:background="@drawable/background" | ||
android:weightSum="1"> | ||
<application | ||
android:allowBackup="true" | ||
android:icon="@mipmap/ic_launcher" | ||
android:label="@string/app_name" | ||
android:roundIcon="@mipmap/ic_launcher_round" | ||
android:supportsRtl="true" | ||
android:theme="@style/AppTheme"> | ||
<activity android:name=".OptionsActivity"></activity> | ||
<activity android:name=".PlayActivity" /> | ||
<activity android:name=".Sec1814080911130Activity"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
|
||
<category android:name="android.intent.category.LAUNCHER" /> | ||
</intent-filter> | ||
</activity> | ||
</application> | ||
|
||
<Button | ||
android:id="@+id/button_play" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:text="开始游戏" /> | ||
|
||
<Button | ||
android:id="@+id/button_options" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:text="选项" /> | ||
|
||
</LinearLayout> |