嗨,我是android的新手,我有3个编辑框,我已经设置了3个setOnFocusChangeListener基于编辑框明智,当我关注手机没有编辑框,我得到SIM没有ID而不是移动没有ID。使用错误的id来调用onFocus函数。如果我有任何错误,请告诉我们或解决问题。
源代码:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.content_temp);
objMobileNo = (EditText) findViewById(R.id.mobile_no);
objSimNo = (EditText) findViewById(R.id.sim_no);
objImsiNo = (EditText) findViewById(R.id.imsi_no);
View.OnFocusChangeListener a = new View.OnFocusChangeListener() {
public void onFocusChange(View view, boolean hasFocus) {
if (!hasFocus) {
//this if condition is true when edittext lost focus...
//check here for number is larger than 10 or not
// focusText = "MOBILE";
// Log.d("BKS", "onFocusChange: " + focusText);
Log.d("BKS", "onFocusChange: " + view.getId());
Log.d("BKS", "onFocusChange: " + R.id.mobile_no);
}
}
};
objMobileNo.setOnFocusChangeListener(a);
objSimNo.setOnFocusChangeListener(a);
objImsiNo.setOnFocusChangeListener(a);
XML代码:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<EditText
android:layout_marginTop="100dp"
android:id="@+id/mobile_no"
style="@style/Material_Action"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/hint_mob_no"
android:inputType="number"
android:maxLength="10" />
<EditText
android:id="@+id/sim_no"
style="@style/Material_Action"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/hint_sim_no"
android:inputType="number"
android:maxLength="20" />
<EditText
android:id="@+id/imsi_no"
style="@style/Material_Action"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/hint_imsi_no"
android:inputType="number"
android:maxLength="15" />
<EditText
android:id="@+id/status"
style="@style/Material_Action"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="text"
android:visibility="gone" />
<EditText
android:id="@+id/scanning_type"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="text"
android:visibility="gone" />
<LinearLayout
android:id="@+id/mLlayoutBottomButtons"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:orientation="horizontal">
<Button
android:id="@+id/verify"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/holo_green_light"
android:text="Verify"
android:textColor="@android:color/white">
</Button>
</LinearLayout>
先谢谢,
Kalanidhi。
答案 0 :(得分:1)
您为所有OnFocusChangeListener
设置了相同的EditText
。所以当你关注一个新的EditText
时,当前的一个会失去它的焦点。因此,对于两个事件onFocusChange()
都将被调用。但是,您的if
条件只会过滤失去焦点的视图,而不会过滤获得焦点的视图。
所以替换
if (!hasFocus) {
}
使其按预期工作
if (hasFocus) {
}