Skip to content

Commit

Permalink
hzuapps#2 第2次实验
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoshanshanlin committed Apr 15, 2018
1 parent 8361635 commit e67f94e
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 2 deletions.
21 changes: 21 additions & 0 deletions soft1606081301233/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="edu.hzuapps.androidlabs.soft1606081301233" >

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="soft1606081301233日历日程"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme" >
<activity android:name=".Soft1606081301233Activity" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>
12 changes: 10 additions & 2 deletions soft1606081301233/Soft1606081301233Activity.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
package edu.hzuapps.androidlabs.soft1606081301233;
public class Soft1606081301233Activity{

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;

}
public class Soft1606081301233Activity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_soft1606081301233);
}
}
19 changes: 19 additions & 0 deletions soft1606081301233/activity_soft1606081301233.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="edu.hzuapps.androidlabs.soft1606081301233.Soft1606081301233Activity">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />

</android.support.constraint.ConstraintLayout>
3 changes: 3 additions & 0 deletions soft1606081301233/strings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<resources>
<string name="app_name">soft1606081301233日历日程</string>
</resources>

0 comments on commit e67f94e

Please sign in to comment.