我是新來的android和製作一個應用程序,其中有縱向和橫向模式的佈局設計。該應用在屏幕方向上運行良好。 在這個程序中我已經設置了編輯文本的驗證並顯示錯誤槽set Error()。這工作正常,但是當我嘗試旋轉編輯文本中的空白字段的方向設置錯誤()方法設置錯誤 。我試圖通過谷歌搜索以不同的方式解決這個問題,但沒有成功。請幫幫我。下面感謝Android屏幕方向編輯文本顯示設置錯誤?
是我的代碼
EditText name, email, phone_no, subject, message;
Button send;
JSONObject json;
final Context context = this;
String valid_name = " ", valid_phone_no = " ", valid_email = " ",
valid_sub = " ", valid_msg = " ";
private ProgressDialog pDialog;
Boolean isInternetPresent = false;
Boolean isrotaion = false;
static boolean et_focus;
String emailPattern = "^[_A-Za-z0-9-]+(\\.[_A-Za-z0-9-]+)*@[A-Za-z0-9]+(\\.[A-Za-z0-9]+)*(\\.[A-Za-z]{2,})$";
JsonParser jsonParser = new JsonParser();
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.contact_us);
name = (EditText) findViewById(R.id.edtname);
email = (EditText) findViewById(R.id.edtemail);
phone_no = (EditText) findViewById(R.id.edtphone);
subject = (EditText) findViewById(R.id.edtsubject);
message = (EditText) findViewById(R.id.edtmessage);
send = (Button) findViewById(R.id.send);
ActionBar actionBar = getActionBar();
actionBar.setDisplayShowHomeEnabled(false);
actionBar.setDisplayHomeAsUpEnabled(true);
actionBar.setHomeButtonEnabled(true);
actionBar.setDisplayShowTitleEnabled(true);
actionBar.setBackgroundDrawable(new ColorDrawable(Color
.parseColor("#0f567c")));
setTitle("Contact us");
send.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
if (valid_name != null && valid_email != null
&& valid_phone_no != null && valid_sub != null
&& valid_msg != null) {
isInternetPresent = isConnected();
if (!isInternetPresent) {
buildAlertMessageNonet();
} else
{
new CreateContact().execute();
}
} else {
Toast.makeText(getApplicationContext(),
"Please Fill up all Fields Correctly.",
Toast.LENGTH_SHORT).show();
}
}
});
int orientation = this.getResources().getConfiguration().orientation;
if (orientation == Configuration.ORIENTATION_PORTRAIT) {
// code for portrait mode
isrotaion = true;
} else {
// code for landscape mode
isrotaion = true;
}
name.addTextChangedListener(new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start, int before,
int count) {
// TODO Auto-generated method stub
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count,
int after) {
// TODO Auto-generated method stub
}
@Override
public void afterTextChanged(Editable s) {
// TODO Auto-generated method stub
validtion_name(name);
}
});
email.addTextChangedListener(new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start, int before,
int count) {
// TODO Auto-generated method stub
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count,
int after) {
// TODO Auto-generated method stub
Log.i("TAG", "betextchange");
}
@Override
public void afterTextChanged(Editable s) {
// TODO Auto-generated method stub
validation_Email(email);
}
});
phone_no.addTextChangedListener(new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start, int before,
int count) {
// TODO Auto-generated method stub
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count,
int after) {
// TODO Auto-generated method stub
}
@Override
public void afterTextChanged(Editable s) {
// TODO Auto-generated method stub
validation_Phone_no(10, 13, phone_no);
}
});
subject.addTextChangedListener(new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start, int before,
int count) {
// TODO Auto-generated method stub
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count,
int after) {
// TODO Auto-generated method stub
}
@Override
public void afterTextChanged(Editable s) {
// TODO Auto-generated method stub
validation_Subject(subject);
}
});
message.addTextChangedListener(new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start, int before,
int count) {
// TODO Auto-generated method stub
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count,
int after) {
// TODO Auto-generated method stub
}
@Override
public void afterTextChanged(Editable s) {
// TODO Auto-generated method stub
validation_Message(message);
}
});
}
public void validtion_name(EditText edt) throws NumberFormatException {
Log.i("TAG", "name");
Log.i("TAG", String.valueOf(edt.length()));
if (edt.getText().toString().trim().length() <= 0) {
edt.setError("Accept Alphabets Only.");
valid_name = null;
} else if (edt.getText().toString().contains(" ")) {
edt.setError(null);
} else if (!edt.getText().toString().matches("[a-zA-Z]+")) {
edt.setError("Accept Alphabets Only.");
valid_name = null;
} else if (edt.getText().toString().charAt(0) == ' ') {
edt.setError("First Letter Not be Space ");
valid_name = null;
} else {
valid_name = edt.getText().toString();
}
}
public void validation_Phone_no(int MinLen, int MaxLen, EditText edt)
throws NumberFormatException {
if (edt.getText().toString().length() <= 0) {
edt.setError("Numbers Only");
valid_phone_no = null;
} else if (edt.getText().toString().length() < MinLen) {
edt.setError("Minimum length " + MinLen);
valid_phone_no = null;
} else if (edt.getText().toString().length() > MaxLen) {
edt.setError("Maximum length " + MaxLen);
valid_phone_no = null;
} else if (edt.getText().toString().charAt(0) == ' ') {
edt.setError("First Number Not be Space");
valid_phone_no = null;
} else if (!edt.getText().toString().matches("^[+]?[0-9]{10,13}$")) {
edt.setError("Invalid Number");
valid_phone_no = null;
}
else {
valid_phone_no = edt.getText().toString();
}
}
public void validation_Email(EditText edt) {
if (edt.getText().toString() == null) {
edt.setError("Invalid Email Address");
valid_email = null;
} else if (isEmailValid(edt.getText().toString()) == false) {
edt.setError("Invalid Email Address");
valid_email = null;
} else if (edt.getText().toString().charAt(0) == ' ') {
edt.setError("First Letter Not be Space");
valid_email = null;
} else if (!edt.getText().toString().matches(emailPattern)) {
edt.setError("Invalid Email Address");
valid_email = null;
} else {
valid_email = edt.getText().toString();
}
}
boolean isEmailValid(CharSequence email) {
return android.util.Patterns.EMAIL_ADDRESS.matcher(email).matches();
}
public void validation_Subject(EditText edt) {
if (edt.getText().toString().isEmpty()) {
edt.setError("Subject not be Empty ");
valid_sub = null;
} else if (edt.getText().toString().charAt(0) == ' ') {
edt.setError("First Letter Not be Space");
valid_sub = null;
} else {
valid_sub = edt.getText().toString();
}
}
public void validation_Message(EditText edt) {
Log.i("TAG", "maessage");
if (edt.getText().toString().isEmpty()) {
edt.setError("Message not be Empty ");
valid_msg = null;
} else if (edt.getText().toString().charAt(0) == ' ') {
edt.setError("First Letter Not be Space");
valid_msg = null;
} else {
edt.setError(null);
valid_msg = edt.getText().toString();
}
}
此外,在清單
<application
android:allowBackup="true"
android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.my.Home"
android:configChanges="orientation"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.my.Careers"
android:configChanges="orientation"
android:windowSoftInputMode="stateHidden" >
</activity>
<activity
android:name="com.my.Services"
android:configChanges="orientation" >
</activity>
<activity
android:name="com.my.Contact_us"
android:configChanges="orientation|keyboardHidden"
android:windowSoftInputMode="stateHidden" >
</activity>
<activity
android:name="com.my.View_service"
android:configChanges="orientation" >
</activity>
<activity
android:name="com.my.Direction"
android:configChanges="orientation" >
</activity>
謝謝@rj但問題沒有解決。 – Techiee
檢查我編輯的答案 –