gpt4 book ai didi

android - android中的TabGroup Activity问题

转载 作者:行者123 更新时间:2023-11-29 14:06:57 25 4
gpt4 key购买 nike

我有 TabAvtivity,其中在特定的 Tab 下我有一个 Tab GroupActivity,在这个组下我有 3 个 Activity 。这是下面的格式。

TabActivity-->Tab1 Tab2 Tab3

在 Tab2 下 --> TabGroupActivity。

在 TabGroupActivity--> Activiy1 --> Activity 2 --> Activity 3下

如果我选择 Activity 2 from Activity 1 ,问题出在 TabGroupActivity 下。当我从 Activity 2 返回时。 Activity 1 正在重新启动。我不希望这发生。同 Activity 二、三

这是我的 TabGroupActivity

public class TabGroupActivity extends ActivityGroup {

private ArrayList<String> mIdList;

static boolean restartFlag=false;

@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);

if (mIdList == null) mIdList = new ArrayList<String>();
}

/**
* This is called when a child activity of this one calls its finish method.
* This implementation calls {@link LocalActivityManager#destroyActivity} on the child activity
* and starts the previous activity.
* If the last child activity just called finish(),this activity (the parent),
* calls finish to finish the entire group.
*/
@Override
public void finishFromChild(Activity child)
{
restartFlag=true;

Log.e("finishFromChild","finishFromChild");
LocalActivityManager manager = getLocalActivityManager();

int index = mIdList.size()-1;

if (index < 1) {

finish();

return;
}

//manager.destroyActivity(mIdList.get(index), true);

mIdList.remove(index);

index--;

String lastId = mIdList.get(index);

Intent lastIntent = manager.getActivity(lastId).getIntent();

Window newWindow = manager.startActivity(lastId, lastIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP));

setContentView(newWindow.getDecorView());

}

/**
* Starts an Activity as a child Activity to this.
* @param Id Unique identifier of the activity to be started.
* @param intent The Intent describing the activity to be started.
* @throws android.content.ActivityNotFoundException.
*///Intent.FLAG_ACTIVITY_REORDER_TO_FRONT | Intent.FLAG_ACTIVITY_PREVIOUS_IS_TOP

public void startChildActivity(String Id, Intent intent) {

Window window;
Log.e("startChildActivity","startChildActivity");

window = getLocalActivityManager().startActivity(Id,intent.addFlags(Intent.FLAG_ACTIVITY_PREVIOUS_IS_TOP ));

if (window != null)
{
mIdList.add(Id);

setContentView(window.getDecorView());
}


}

/**
* The primary purpose is to prevent systems before android.os.Build.VERSION_CODES.ECLAIR
* from calling their default KeyEvent.KEYCODE_BACK during onKeyDown.
*/
/*@Override
public boolean onKeyDown(int keyCode, KeyEvent event)
{
if (keyCode == KeyEvent.KEYCODE_BACK)
{

//preventing default implementation previous to android.os.Build.VERSION_CODES.ECLAIR
return true;
}
return super.onKeyDown(keyCode, event);
}

*//**
* Overrides the default implementation for KeyEvent.KEYCODE_BACK
* so that all systems call onBackPressed().
*//*
@Override
public boolean onKeyUp(int keyCode, KeyEvent event)
{
if (keyCode == KeyEvent.KEYCODE_BACK) {
onBackPressed();
return true;
}
return super.onKeyUp(keyCode, event);
}*/

/**
* If a Child Activity handles KeyEvent.KEYCODE_BACK.
* Simply override and add this method.
*/
@Override
public void onBackPressed ()
{

Log.e("onBackPressed","Back Came Here");

int length = mIdList.size();

Log.d("onBackPressed",String.valueOf(length));

if ( length >= 1)
{
Activity current = getLocalActivityManager().getActivity(mIdList.get(length-1));
current.finish();
}

}
}

最佳答案

你把这个复杂化了。为了简单起见,我更喜欢这样的东西。

TabActivity -> Tab1 Activity 、Tab2 Activity 和 Tab3 Activity

对于 Tab2 Activity,如果需要显示不同的屏幕,您可以使用 ViewAnimator。

对于上述问题,您需要查看您的 onBackPressed 事件在何处传播和处理。您完成它的方式可以是任何 Activity 或 TabGroupActivity 或父 TabActivity。

关于android - android中的TabGroup Activity问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6328765/

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