Skip to content

Commit

Permalink
Android - QA Bug fix hide memo's control buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
wannabit-yongjoo committed Aug 10, 2020
1 parent b578bcc commit 4bb521f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle sa
mBtnQr = rootView.findViewById(R.id.btn_qr);
mBtnPaste = rootView.findViewById(R.id.btn_paste);
mBtnHistory = rootView.findViewById(R.id.btn_history);
mBtnQr.setVisibility(View.VISIBLE);
mBtnPaste.setVisibility(View.VISIBLE);
mBtnHistory.setVisibility(View.GONE);

mBeforeBtn.setOnClickListener(this);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@
android:clickable="true"
android:gravity="center"
android:orientation="horizontal"
android:background="@drawable/btn_trans_with_border">
android:background="@drawable/btn_trans_with_border"
android:visibility="gone">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
Expand All @@ -87,7 +88,8 @@
android:clickable="true"
android:gravity="center"
android:orientation="horizontal"
android:background="@drawable/btn_trans_with_border">
android:background="@drawable/btn_trans_with_border"
android:visibility="gone">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
Expand All @@ -108,7 +110,8 @@
android:clickable="true"
android:gravity="center"
android:orientation="horizontal"
android:background="@drawable/btn_trans_with_border">
android:background="@drawable/btn_trans_with_border"
android:visibility="gone">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
Expand Down

0 comments on commit 4bb521f

Please sign in to comment.