28 lines
803 B
Java
28 lines
803 B
Java
|
|
package chaoran.business.activity;
|
||
|
|
|
||
|
|
/*
|
||
|
|
**********************************************
|
||
|
|
* DATE PERSON REASON
|
||
|
|
* 2021-02-04 FXY Created
|
||
|
|
**********************************************
|
||
|
|
*/
|
||
|
|
|
||
|
|
|
||
|
|
import android.os.Bundle;
|
||
|
|
import android.widget.TextView;
|
||
|
|
import androidx.annotation.Nullable;
|
||
|
|
import androidx.appcompat.app.AppCompatActivity;
|
||
|
|
import chaoran.business.R;
|
||
|
|
|
||
|
|
public class AboutActivity extends AppCompatActivity {
|
||
|
|
|
||
|
|
@Override
|
||
|
|
protected void onCreate(@Nullable Bundle savedInstanceState) {
|
||
|
|
super.onCreate(savedInstanceState);
|
||
|
|
setContentView(R.layout.activity_about);
|
||
|
|
setTitle(R.string.activity_about);
|
||
|
|
TextView textView = findViewById(R.id.about_content);
|
||
|
|
textView.setText(R.string.activity_about_content);
|
||
|
|
}
|
||
|
|
}
|