0

シンプルな2画面アプリがあります。最初の画面にはログイン オプションが表示され、2 番目の画面にはログイン時にコンテンツが表示されます。

ユーザーがログインしたら、 でキーを設定しますFlow.get( view ).set( Screens.CHAT )

すべてが素晴らしくダンディですが、ビューが次のようになる問題に遭遇しました。

ここに画像の説明を入力

このビューの再描画は、ユーザーがホーム ボタンを押してアプリを離れ、アプリに戻ったときに発生します (基本的には の後onRestart( ))。未入力RecyclerViewがビュー階層に再び追加されます。

私のDispatcher論理はこれです:

public void dispatch(Traversal traversal, TraversalCallback callback) {
    Object dest = traversal.destination.top();
    Object source = traversal.origin == null ? null : traversal.origin.top();

    ViewGroup root = (ViewGroup) activity.findViewById(R.id.root);

    if (traversal.origin != null) {
        int childCount = root.getChildCount();
        // Our container has a root view with an ImageView in it.
        // If child count > 1, we need to remove the child at position = 1
        // because ImageView is at position = 0
        if (childCount > 1) {
            // save state
            traversal.getState(traversal.origin.top()).save(root.getChildAt(1));
            // remove the added views
            removeAllViewsAfter(root,0);
        }
    }

    @LayoutRes int layout;
    if(dest.equals(Screens.WELCOME)){
        layout = R.layout.view_welcome;
    }else if(dest.equals(Screens.CHAT)){
        layout = R.layout.view_chat;
    }else{
        throw new IllegalArgumentException("Unrecognized Screen");
    }

    View incomingView = LayoutInflater
            .from(traversal.createContext(dest, activity))
            .inflate(layout, root, false);
    traversal.getState( traversal.destination.top() ).restore(incomingView);
    root.addView( incomingView );
    callback.onTraversalCompleted();
}
//----------------------------------------------------------------------------------------------
private void removeAllViewsAfter(ViewGroup root, int index){
    for( int i = root.getChildCount() - 1; i > index; i-- ){
        root.removeViewAt( i );
    }
}
//----------------------------------------------------------------------------------------------  

Dispatcher同じレイアウトが膨張して再度追加されないようにするには、ロジックで何を変更すればよいですか?

4

1 に答える 1

0

問題は、root ViewGroupがクリアされていないことです。

問題を解決すると思われる差分を次に示します (<削除、>追加)。

12c12
<         if (childCount > 1) {
---
>         if (childCount > 0) {
14c14
<             traversal.getState(traversal.origin.top()).save(root.getChildAt(1));
---
>             traversal.getState(traversal.origin.top()).save(root.getChildAt(0));
16c16
<             removeAllViewsAfter(root,0);
---
>             frame.removeAllViews();
36,42d35
< //----------------------------------------------------------------------------------------------
< private void removeAllViewsAfter(ViewGroup root, int index){
<     for( int i = root.getChildCount() - 1; i > index; i-- ){
<         root.removeViewAt( i );
<     }
< }
< //----------------------------------------------------------------------------------------------  

Flow リポジトリには、既に持っているものにかなり近い例があります。

@Override
public void dispatch(@NonNull Traversal traversal, @NonNull TraversalCallback callback) {
  Log.d("BasicDispatcher", "dispatching " + traversal);
  Object destKey = traversal.destination.top();

  ViewGroup frame = (ViewGroup) activity.findViewById(R.id.basic_activity_frame);

  // We're already showing something, clean it up.
  if (frame.getChildCount() > 0) {
    final View currentView = frame.getChildAt(0);

    // Save the outgoing view state.
    if (traversal.origin != null) {
      traversal.getState(traversal.origin.top()).save(currentView);
    }

    // Short circuit if we would just be showing the same view again.
    final Object currentKey = Flow.getKey(currentView);
    if (destKey.equals(currentKey)) {
      callback.onTraversalCompleted();
      return;
    }

    frame.removeAllViews();
  }

  @LayoutRes final int layout;
  if (destKey instanceof HelloScreen) {
    layout = R.layout.hello_screen;
  } else if (destKey instanceof WelcomeScreen) {
    layout = R.layout.welcome_screen;
  } else {
    throw new AssertionError("Unrecognized screen " + destKey);
  }

  View incomingView = LayoutInflater.from(traversal.createContext(destKey, activity)) //
      .inflate(layout, frame, false);

  frame.addView(incomingView);
  traversal.getState(traversal.destination.top()).restore(incomingView);

  callback.onTraversalCompleted();
}
于 2016-12-28T09:51:47.990 に答える