0
我在android中創建了一個登錄應用程序。我想在我的應用程序的每個選項卡中顯示用戶的名稱。登錄名未出現在Android應用程序中
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.home);
final TextView txtuser=(TextView)findViewById(R.id.txtUser);
txtuser.setText("Welcome "+getIntent().getStringExtra(DataBase_Server.NAME));
}
每當用戶登錄他的名字確實出現,但是當他點擊了一些不同的選項卡,然後重定向到主頁選項卡的用戶名消失