我正在尝试在从另一个活动返回活动时将焦点设置在LinearLayout视图上。场景:
我有一个带有一堆LinearLayout项目的活动(其中有东西),其中一些是文本,另一些是照片。假设最重要的20个是TextView,其余的是照片。当我离开这个活动(拍照)时,活动会进入TextView所在列表的顶部 - 无论我做什么。
如何在触发新活动之前强制重点关注我所在的项目?
我已经尝试过这个但没有成功:
我目前正试图通过记住上一个视图而没有成功来强制关注(尽管我可以看到正在执行的代码)。在我的主要活动中:
@Override
public void onResume() {
super.onResume();
// See if we had a field with focus previously...
if (mPreviousView != null) {
if (mPreviousView.isFocusable()) {
mPreviousView.requestFocus();
}
}
}
...
@Override
protected void onPause() {
super.onPause();
mPreviousView = this.getCurrentFocus();
}
我在LinearLayout中动态设置焦点:
private void initialize() {
LayoutInflater inflater = (LayoutInflater)mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
inflater.inflate(R.layout.field_photo_picker, this);
// To allow focus to be returned to control after taking photo
this.setFocusableInTouchMode(true);
this.setFocusable(true);
this.setClickable(true);
最后是LinearLayout的XML:
<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="5dp"
android:paddingBottom="5dp">
<TextView
android:id="@+id/name"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="18sp"
android:textStyle="normal"
android:text="" />
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/photoValue"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:textSize="17sp"
android:textStyle="normal"
android:gravity="right|center_vertical"
android:layout_weight="1"
android:layout_marginRight="5dp"
android:text="" />
<ImageButton
android:id="@+id/photoPicker"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/form_photo"
android:padding ="5dp"
android:gravity="center_vertical"
android:focusableInTouchMode="false"
android:background="?android:attr/selectableItemBackground"
android:layout_weight="0"
/>
</LinearLayout>
<View
android:layout_marginTop="8dp"
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/grey" />
</LinearLayout>
</merge>
答案 0 :(得分:1)
制作您的textview
和其他观看次数focusable
,您制作的this.setFocusable(true);
没有任何意义