android - Animating Fragment causes other view to "jump" -
    short question:    when using animation on fragmenttransactions, how can animate other views animation?   long question:   hi,   i new fragments , on, , trying animate them single activity created following xml file activity:   <linearlayout     android:id="@+id/run_select_fragment_container"     android:layout_width="match_parent"     android:layout_height="match_parent"     android:keepscreenon="true"     android:orientation="vertical">       <framelayout         android:id="@+id/activity_run_search_fragmentheaderplaceholder"         android:layout_width="match_parent"         android:layout_height="wrap_content" />      <framelayout         android:id="@+id/activity_run_search_fragmentplaceholder"         android:layout_width="match_parent"         android:layout_height="0dp"         android:layout_weight="1"/>  </linearlayout>   then de...