我有这样的布局:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/border_selector"
android:orientation="vertical"
android:focusable="true" >
<ProgressBar
android:id="@+id/progressBar1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:indeterminateDrawable="@drawable/custom_progress_bar"
android:visibility="gone" />
<AutoCompleteTextView
android:id="@+id/autoComplete"
android:layout_width="fill_parent"
android:layout_height="48dp"
android:layout_alignParentLeft="true"
android:layout_toLeftOf="@id/progressBar1"
android:background="@android:color/transparent"
android:gravity="center_vertical" />
</RelativeLayout>
其中border_selector
是父布局的selector
。内在的孩子AutoCompleteTextView
没有任何背景或边框。所以,在这个AutoCompleteTextView
焦点上,我想让Parent也获得焦点,以便选择器工作。
我试过了(它没有用。即使它有效,我认为这不是一个好的解决方案):
autoComplete.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if(hasFocus){
parent.requestFocus();
}else{
parent.clearFocus();
}
}
});
答案 0 :(得分:0)
在视图具有焦点时,您似乎正在尝试使布局看起来处于选中状态。而不是使用选择器以编程方式更改布局获得焦点时的背景。
但是你应该知道这不是Android的预期行为,你最有可能保留原样:)
修改强>
android:layout_toLeftOf="@id/progressBar1"
删除此行,这样进度条将显示在textview内部,请参阅此处以供参考:Putting progress bar inside edit text which will launch after user has entered something