Skip to content

Commit

Permalink
fix: tabbar input error
Browse files Browse the repository at this point in the history
  • Loading branch information
liuyuanxiao committed Sep 13, 2018
1 parent 8291bf5 commit 1432b72
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import android.view.KeyEvent;
import android.view.ViewGroup;
import android.view.ViewStub;
import android.view.WindowManager;
import android.widget.FrameLayout;

import com.benmu.framework.BMWXApplication;
Expand Down Expand Up @@ -70,6 +71,7 @@ private void initView() {
}

private void initTabView() {
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN);
viewStub_tabView = (ViewStub) findViewById(R.id.vs_tabView);
viewStub_tabView.inflate();
tableView = (TableView) findViewById(R.id.tabView);
Expand Down

0 comments on commit 1432b72

Please sign in to comment.