1
我有兩種佈局:A和B.android面板無法獲得焦點
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);