Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在滚动视图中有四个文本视图,我在打开键盘的情况下开始我的活动那?
您必须使用 fullScroll 功能:
scrollView.fullScroll(ScrollView.FOCUS_DOWN);
如果您需要专注于特定视图,请尝试以下操作:
View v = findViewById(R.id.textView1); v.setFocusable(true); v.setFocusableInTouchMode(true); v.requestFocus();