Skip to content

Commit

Permalink
Merge pull request #168 from Lee20170303/master
Browse files Browse the repository at this point in the history
#1 #146 第一次作业
  • Loading branch information
zengsn authored Mar 13, 2017
2 parents 6c0e650 + 6b935de commit 79a1700
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package edu.hzuapps.androidlabs.homeworks.net1414080903235;

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

public class Net1414080903235Activity extends AppCompatActivity {

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

<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>

0 comments on commit 79a1700

Please sign in to comment.