yanzm / MaterialTabHost

TabHost along with the specifications of the Material design
Apache License 2.0
93 stars 20 forks source link

スワイプ後にスワイプ前のページのタブをタップしてもページが変わらない #1

Closed operando closed 9 years ago

operando commented 9 years ago

STEP BY STEP

  1. スワイプでタブを一つ移動する(ページAのタブからページBのタブへ移動)
  2. スワイプ前のページのタブを押下(ページAのタブを押下)

Pagerでスクロール後に、TabWidgetのsetCurrentTabを呼び出しており、TabHostのpositionが変更されていなかった。 そのため、タブをタップしても前のpositionにいることになっており、ページが変更されなかった。 TabHostのsetCurrentTabを呼び出すことで問題を修正。

yanzm commented 9 years ago

thanks!