我嘗試製作用於登錄的圖像按鈕。但結果很奇怪。請參閱附件。 奇怪的圖像按鈕結果
奇怪的是圖像的按鈕在按鈕裏面...
希望對您有所幫助。
這是XML代碼...
<ImageButton
android:id="@+id/loginButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/chkRememberMe"
android:layout_centerHorizontal="true"
android:layout_marginTop="30dp"
android:src="@drawable/login_off" />
這是爲登錄按鈕的Java代碼...
imageButtonLogin = (ImageButton) findViewById(R.id.loginButton);
imageButtonLogin.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
String inputPassword = passwordEditText.getText().toString();
if (password.isEmpty()) {
showDialog(DIALOG_ALERT);
} else {
String inputUserName = userNameEditText.getText()
.toString();
Contact contact = new Contact();
contact.setUsername(inputUserName);
contact.setPassword(inputPassword);
if (contactDb.searchContact(contact)) {
// logged in
/*Toast.makeText(getApplicationContext(),
getResources().getString(R.string.loggedIn),
Toast.LENGTH_LONG).show();*/
Intent newActivity = new Intent();
//go to AudioRecoder page
newActivity
.setClass(MainActivity.this, AudioActivity.class);
startActivity(newActivity);
} else {
// login failed
showDialog(DIALOG_ALERT);
}
}
}
什麼附件 – Blackbelt
請解釋一下,*完全準確地*,什麼是「怪異」。另外,請在您設置按鈕的地方提供XML或Java。 – CommonsWare
試着設置你的'ImageButton'而不是'src'的背景。 – GrIsHu