29 lines
824 B
Java
29 lines
824 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);
|
|
//隐藏状态栏
|
|
getSupportActionBar().hide();
|
|
TextView textView = findViewById(R.id.about_content);
|
|
textView.setText(R.string.activity_about_content);
|
|
}
|
|
}
|