AとBの2つのレイアウトがあります。
A と B はどちらも RelativeLayout です。
それらは FrameLayout にあります。BはAの後ろに隠れています。
B をクリックすると A から引き出され、もう一度 B をクリックすると非表示になります。
問題は、B が引き出された後、ボタンと EditTexts をクリックできないのはなぜですか? パネル B はフォーカスを取得できません。
Animation showAnimation = AnimationUtils.loadAnimation(LoginActivity.this, R.anim.login_show);
showAnimation.setFillAfter(true);
doctorLoginLayout.startAnimation(showAnimation);
doctorLoginLayout.setFocusable(true);
doctorLoginLayout.requestFocus();
doctorLoginLayout.setClickable(true);