Skip to content

Instantly share code, notes, and snippets.

@pingmoogle
Created June 29, 2021 13:48
Show Gist options
  • Save pingmoogle/5e8efe4c0b16bdb0901452f6e9902351 to your computer and use it in GitHub Desktop.
Save pingmoogle/5e8efe4c0b16bdb0901452f6e9902351 to your computer and use it in GitHub Desktop.
ZMM的作业Task4
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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=".MainActivity">
<EditText
android:id="@+id/nameTxt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="36dp"
android:layout_marginTop="260dp"
android:ems="10"
android:inputType="textPersonName"
android:text="Name"
app:layout_constraintEnd_toStartOf="@+id/nameBtn"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<Button
android:id="@+id/nameBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="260dp"
android:layout_marginEnd="30dp"
android:text="Button"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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">
<TextView
android:id="@+id/resultTxt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="52dp"
android:layout_marginTop="300dp"
android:text="TextView"
android:textColor="#4CAF50"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.task42">
<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/Theme.Task42">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".ResultActivity" />
</application>
</manifest>
package com.example.task42;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import org.w3c.dom.Text;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
EditText nameTxt = findViewById(R.id.nameTxt);
Button nameBtn = findViewById(R.id.nameBtn);
nameBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String username = nameTxt.getText().toString();
Intent new1 = new Intent(MainActivity.this, ResultActivity.class);
new1.putExtra("username", username);
startActivity(new1);
}
});
}
}
package com.example.task42;
import android.os.Bundle;
import android.util.Log;
import android.widget.TextView;
import androidx.appcompat.app.AppCompatActivity;
import java.util.Date;
public class ResultActivity extends AppCompatActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_result);
String username = this.getIntent().getExtras().getString("username");
String timeSentence = "";
Date thisdate = new Date();
int thisHour = thisdate.getHours();
if (thisHour < 12 && thisHour > 5) timeSentence = "早上好";
else if (thisHour == 12) timeSentence = "中午好";
else timeSentence = "晚上好";
Log.i(thisdate.toString(), "onCreate: date");
String finalSentence = username + ", " + timeSentence;
TextView resultSentence = findViewById(R.id.resultTxt);
resultSentence.setText(finalSentence);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment