Commit 9c50b325 by Lee Jaebin

PDFで報告レイアウトを表示時、タップしてもツールバー非表示の状態にする

parent 516d4265
......@@ -1825,25 +1825,6 @@ public class ContentViewActivity extends ABVContentViewActivity {
*/
public void singleTapMotion() {
if (isOpenedOperationTask) {
TranslateAnimation toolBarAnimation;
if (mToolBar.getVisibility() == View.GONE) {
setToolbarVisableForTask(true);
toolBarAnimation = new TranslateAnimation(0, 0, -mToolBar.getHeight(), 0);
} else {
setToolbarVisableForTask(false);
toolBarAnimation = new TranslateAnimation(0, 0, 0, -mToolBar.getHeight());
}
toolBarAnimation.setDuration(500);
if (hasMultiPages) {
TranslateAnimation seekBarAnimation;
if (mToolBar.getVisibility() == View.GONE) {
seekBarAnimation = new TranslateAnimation(0, mDisplaySize.height, mDisplaySize.height - mSeekBarLayout.getHeight(), 0);
} else {
seekBarAnimation = new TranslateAnimation(0, mDisplaySize.height - mSeekBarLayout.getHeight(), mDisplaySize.height, 0);
}
seekBarAnimation.setDuration(500);
}
return;
} else if (isEnquete) {
return;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment