2012-01-31 21 views
0

私はTabActivityを使用していて、すべての子アクティビティにタブを表示します。今私はフラグがtrueの場合にのみActivity2にリダイレクトしたい>Activity2TabGroupActivity - startChildActivity - not working

- >TabGroupActivity1(TabGroupActivity) - - >Activity1私はこのMainActivity(TabActivity)のように流れてきました。そのための私のコードは以下のようなものです。

TabGroupActivity 

    public class TabGroupActivity extends ActivityGroup { 

    private ArrayList<String> mIdList; 

    @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) { 
     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); 
     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. 
    */ 
    public void startChildActivity(String Id, Intent intent) {  
     Window window = getLocalActivityManager().startActivity(Id,intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_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 () { 
     int length = mIdList.size(); 
     if (length > 1) { 
      Activity current = getLocalActivityManager().getActivity(mIdList.get(length-1)); 
      current.finish(); 
     } 
    } 
} 

今コードActivity1

@Override 
    protected void onCreate(Bundle savedInstanceState) { 
     // TODO Auto-generated method stub 
     super.onCreate(savedInstanceState); 

     if(flag){ 
      TabGroupActivity parentActivity = (TabGroupActivity)getParent(); 
      Intent previewMessage = new Intent(parentActivity, Activity2.class); 
      parentActivity.startChildActivity("Activity2", previewMessage); 
     }else{ 
      setContentView(R.layout.row); 
      //... 
     } 
    } 

この機能していないで、今TabGroupActvity1

public class TabGroupActyvity1 extends TabGroupActivity { 

    @Override 
    public void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     startChildActivity("OptionsActivity", new Intent(this,Activity1.class)); 
    } 


} 

同じコードいくつかのクリックイベントで怒鳴る作品の1のためではなく、私の場合は動作しません

TabGroupActivity parentActivity = (TabGroupActivity)getParent(); 
Intent previewMessage = new Intent(parentActivity, Activity2.class); 
parentActivity.startChildActivity("Activity2", previewMessage); 

どうすればよいですか。 私は問題をよく説明しています...詳細を追加する必要がありますか?

+0

ようTabGroupActivity

でバックキーを扱う...フラグは何が含まれていますか?ここでそれを初期化します。 – Karthi

+0

例外はありますか? – Praveenkumar

+0

フラグはログインの場合はtrue、それはアプリケーションクラスを拡張するクラスから来て、デバッガもif部分に入りますが、Activity2を表示していません –

答えて

4

他の代替案が見つかりました。

代わりに... 子アクティビティのフラグをチェックし、別のページにリダイレクトします。

私は怒鳴る

parentActivity.startChildActivity("EditActivity", new Intent(getParent(), ReportActivity.class)); 

ようReportActivityを開始していると私ものとしてバックプレスを扱う成功したログイン時にこの

if (getLNApplication().isLogin()) { 
    startChildActivity("Report", new Intent(this, ReportActivity.class)); 
}else{ 
    startChildActivity("LogIn", new Intent(this, LoginActivity.class)); 
} 

LoginActivityから同様parnt活動にフラグをチェックしていますユーザーが再度ログインページに戻ってくることを望んでいません。 (フラグ)場合、私はこの

@Override 
public void onBackPressed() { 
    int length = mIdList.size(); 
    if (length > 1) { 
     Activity current = getLocalActivityManager().getActivity(
       mIdList.get(length - 1)); 
     // Added code to disable back press only for the ReportActivity 
     if(current instanceof ReportActivity){ 
      Log.i("TabGroup", "I am instance of ReportActivity"); 
      return; 
     } 
     current.finish(); 
    } 
}