如何在對話框中打開時刪除默認的EditText
的矩形邊框? 我嘗試了將背景設置爲null,但它沒有奏效。當我在對話框中使用它時,只會出現EditText
這個矩形邊框。在對話框中打開時刪除默認的edittext的矩形邊框
這裏是XML佈局:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/background_whitedialog"
android:focusable="true"
android:focusableInTouchMode="true">
...
<android.support.design.widget.TextInputLayout
android:id="@+id/inputPassword"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@null" >
<EditText
android:id="@+id/password"
android:layout_width="match_parent"
android:layout_height="@dimen/dp48"
android:maxLines="1"
android:paddingLeft="@dimen/dp12"
android:textColor="@color/numbertextcolor"
android:textSize="@dimen/sp16" />
</android.support.design.widget.TextInputLayout>
</RelativeLayout>
這裏是的Java代碼:
Dialog dialog = new Dialog(mContext, R.style.DialogSlideAnim);
dialog.getWindow().setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT));
dialog.setContentView(R.layout.dialog_item);
dialog.show();
要刪除EditText中的邊框,請在EditText中提供可繪製的背景。加上TextInputEditText與TextInputLayout中提到的https://developer.android.com/reference/android/support/design/widget/TextInputLayout.html – Ramit
嘗試android:background =「@ null」在您的edittext – kgandroid
@kgandroid已經嘗試..不工作 –