gpt4 book ai didi

java - 不要使用 TabLayout 将 Activity 保留在缓存中

转载 作者:行者123 更新时间:2023-12-01 15:28:53 25 4
gpt4 key购买 nike

这是我的应用程序结构:我有一个带有 4 个选项卡的主要 Activity (帐户、仪表板、媒体、应用程序)。每个选项卡都链接到一个 Activity 。 “应用程序”选项卡包含许多“Activity ”,为了保持选项卡可见,我在“应用程序 Activity ”中执行 if/else 来了解必须显示的布局(可能不是执行此操作的最佳方法,但我没有找到更好的方法) )。

我的问题:当我进入“应用程序”选项卡时,我会看到所有应用程序的列表,然后单击一个应用程序,会出现一个包含该应用程序选项的新屏幕,单击一个选项,会出现一个新屏幕屏幕等然后我单击“媒体”选项卡,我会得到所有媒体的列表。然后我再次单击“应用程序”选项卡,屏幕上仍然显示特定应用程序的选项。我想要的是返回到所有应用程序的列表。

我怎样才能做到这一点?我怎样才能告诉选项卡它必须重新加载 Activity 而不是将其放入看似缓存的地方?

这是我的主要 Activity 代码:

public class MainActivity extends TabActivity {
private int currentTab = 1;
private Application application = null;
private String optionType = null;
private String checkID = null;
private String alertID = null;
private int periodID = -1;
private Statistic stat = null;
private Media media = null;
TabHost tabHost;

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.main);

PreferencesManager.load(this);

Bundle bundle = getIntent().getExtras();
if (bundle != null) {
Log.i("IV", bundle.toString());

String applicationID = null;
applicationID = bundle.getString("applicationID");
if (applicationID != null) {
try {
this.application = Utils.getApplication(applicationID);
} catch (AuthenticationFailedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (ApiCallErrorException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (InternalErrorException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
} else {
this.application = (Application) bundle
.getSerializable("application");
}

this.currentTab = bundle.getInt("currentTab", 1);
this.optionType = bundle.getString("optionType");
this.checkID = bundle.getString("checkID");
this.alertID = bundle.getString("alertID");
this.periodID = bundle.getInt("periodID", -1);
this.stat = (Statistic) bundle.getSerializable("stat");
this.media = (Media) bundle.getSerializable("media");
}

Log.i("IV", "current tab : " + currentTab);

Resources res = getResources(); // Resource object to get Drawables
tabHost = getTabHost(); // The activity TabHost

tabHost.setOnTabChangedListener(new OnTabChangeListener() {

public void onTabChanged(String tabId) {
//Log.i("IV", "Tab id : " +tabId);
setTabColor();
}
});

TabHost.TabSpec spec; // Resusable TabSpec for each tab

// Create an Intent to launch an Activity for the tab (to be reused)
Intent intent = new Intent().setClass(this, AccountActivity.class);

// Initialize a TabSpec for each tab and add it to the TabHost
spec = tabHost
.newTabSpec("account")
.setIndicator(getString(R.string.account),
res.getDrawable(R.drawable.tab_account))
.setContent(intent);
tabHost.addTab(spec);

// Do the same for the other tabs
intent = new Intent().setClass(this, DashboardActivity.class);
spec = tabHost
.newTabSpec("dashboard")
.setIndicator(getString(R.string.dashboard),
res.getDrawable(R.drawable.tab_dashboard))
.setContent(intent);
tabHost.addTab(spec);

intent = new Intent().setClass(this, MediasActivity.class).putExtra(
"media", media);
spec = tabHost
.newTabSpec("medias")
.setIndicator(getString(R.string.medias),
res.getDrawable(R.drawable.tab_media))
.setContent(intent);
tabHost.addTab(spec);

intent = new Intent().setClass(this, ApplicationsActivity.class)
.putExtra("application", application)
.putExtra("optionType", optionType)
.putExtra("checkID", checkID).putExtra("alertID", alertID)
.putExtra("periodID", periodID).putExtra("stat", stat);
spec = tabHost
.newTabSpec("applications")
.setIndicator(getString(R.string.applications),
res.getDrawable(R.drawable.tab_application))
.setContent(intent);
tabHost.addTab(spec);

setTabColor();

if (!PreferencesManager.getBoolean("isLogged")) {
for (int i = 1; i < 4; i++) {
tabHost.getTabWidget().getChildTabViewAt(i).setEnabled(false);
tabHost.getTabWidget().getChildTabViewAt(i)
.setBackgroundColor(Color.rgb(102, 102, 102));
}
tabHost.setCurrentTab(0);
} else {
tabHost.setCurrentTab(currentTab);
}
}

public void setTabColor() {
for(int i=0;i<this.tabHost.getTabWidget().getChildCount();i++)
{
this.tabHost.getTabWidget().getChildAt(i).setBackgroundColor(Color.parseColor("#000000")); //unselected
}
this.tabHost.getTabWidget().getChildAt(this.tabHost.getCurrentTab()).setBackgroundColor(Color.parseColor("#ABABAB")); // selected
}
}

在我的ApplicationsActivity 中,我只是对包中的值执行 if/else 操作,以了解 setContentView(); 使用什么布局;

非常感谢!

最佳答案

我不知道是否理解您的问题,但也许尝试在 Android list 文件中更改您的 Activity 设置并添加:

android:noHistory="true"

关于java - 不要使用 TabLayout 将 Activity 保留在缓存中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9819988/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com