根据画廊的位置,一个或另一个编辑文本将获得焦点。虽然我可以做到,但行为的画廊崩溃:当画廊运行一个位置并将焦点设置在编辑文本上时,画廊的速度崩溃。似乎 Gallery 太慢了,无法按时收到请求。
我没有找到任何关于它的重要信息。
galleryView.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
public void onItemSelected(
@SuppressWarnings("rawtypes") AdapterView adapterView,
View view, int pos, long l) {
if (pos == 0) {
pie_foto_1.post(new Runnable() {
public void run() {
pie_foto_1.requestFocus();
}
});
}
if (pos == 1) {
pie_foto_2.post(new Runnable() {
public void run() {
pie_foto_2.requestFocus();
}
});
}
if (pos == 2) {
pie_foto_3.post(new Runnable() {
public void run() {
pie_foto_3.requestFocus();
}
});
pie_foto_1.setVisibility(View.INVISIBLE);
pie_foto_2.setVisibility(View.INVISIBLE);
pie_foto_3.setVisibility(View.VISIBLE);
}
}
public void onNothingSelected(
@SuppressWarnings("rawtypes") AdapterView adapterView
) {
}
});