|
|
@ -2,14 +2,18 @@ package com.example.cmknowledgegraph;
|
|
|
|
|
|
|
|
|
|
|
|
import androidx.appcompat.app.AppCompatActivity;
|
|
|
|
import androidx.appcompat.app.AppCompatActivity;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import android.annotation.SuppressLint;
|
|
|
|
import android.content.Intent;
|
|
|
|
import android.content.Intent;
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.os.Bundle;
|
|
|
|
|
|
|
|
import android.util.Log;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.View;
|
|
|
|
import android.widget.Button;
|
|
|
|
import android.widget.Button;
|
|
|
|
|
|
|
|
|
|
|
|
public class PersonalityCenterActivity extends AppCompatActivity {
|
|
|
|
public class PersonalityCenterActivity extends AppCompatActivity {
|
|
|
|
|
|
|
|
@SuppressLint("LongLogTag")
|
|
|
|
@Override
|
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
|
|
|
|
|
|
Log.i("PersonalityCenterActivity","个人中心");
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
setContentView(R.layout.activity_personality_center);
|
|
|
|
setContentView(R.layout.activity_personality_center);
|
|
|
|
|
|
|
|
|
|
|
@ -21,7 +25,7 @@ public class PersonalityCenterActivity extends AppCompatActivity {
|
|
|
|
Intent intent=new Intent();
|
|
|
|
Intent intent=new Intent();
|
|
|
|
intent.setClass(PersonalityCenterActivity.this,LoginActivity.class);
|
|
|
|
intent.setClass(PersonalityCenterActivity.this,LoginActivity.class);
|
|
|
|
startActivity(intent);
|
|
|
|
startActivity(intent);
|
|
|
|
System.out.println("点击个人中心的登录按钮");
|
|
|
|
Log.i("PersonalityCenterActivity","点击");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|