2
EditText
を透明にするためにいくつかの問題があります。 enter image description hereEditTextは背景の不透明度を設定します
は、私が試した:
は、カスタムシェイプでEDITTEXTに背景を適用します。これは私が欲しいものである
しかし、この方法でサイズがあなたのように低減され
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" android:padding="10dp">
<solid android:color="@color/transparentButton"/>
<!-- this one is this color of the Rounded Button -->
<corners
android:bottomRightRadius="0dp"
android:bottomLeftRadius="0dp"
android:topLeftRadius="0dp"
android:topRightRadius="0dp"/>
</shape>`
<color name="transparentButton"> #4CFFFFFF </color>
<EditText
android:id="@+id/usernameLoginTxt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableLeft="@drawable/ic_username_login"
android:drawablePadding="15dp"
android:background="@drawable/editetextbackground"
android:ems="10"
android:inputType="textPersonName"
android:hint="Username"
android:textColorHint="@color/black"
android:layout_marginLeft="8dp"
app:layout_constraintLeft_toLeftOf="@+id/titreLogin"
android:layout_marginRight="0dp"
app:layout_constraintRight_toRightOf="@+id/titreLogin"
android:layout_marginTop="44dp"
app:layout_constraintTop_toBottomOf="@+id/soustitrelogin"/>
見ることができます:
enter image description here
- 私は、しかし、すべてが透明である、EDITTEXT、アイコンとテキスト、あまりにもあなたの助けのための
感謝をsetalphaを試してみました、私はあなたが私を理解することを願っています。
トライアンドロイドに
android:padding="10dp"
を追加してみてください背景= "ヌル@" – chirag90