答案 0 :(得分:0)
你可以这样尝试
<EditText
android:id="@+id/textView2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Medium Text"
android:drawableRight="@mipmap/ic_launcher"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="@color/darker_grey"
android:textStyle="bold" />
将您的图片放入
android:drawableRight="@drawable/ic_launcher"
或者你可以这样做
<FrameLayout
android:id="@+id/pwdLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/emailLayout">
<android.support.design.widget.TextInputLayout
android:id="@+id/textinputlayoutpwd"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/emailLayout"
android:layout_marginTop="10dp">
<EditText
android:id="@+id/signinpassword"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="40dp"
android:layout_marginRight="40dp"
android:hint="Password"
android:inputType="textPassword"
android:paddingRight="30dp"
android:singleLine="true"
android:textSize="20dp" />
</android.support.design.widget.TextInputLayout>
<TextView
android:id="@+id/loginpwdicon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right|center_vertical"
android:layout_marginRight="45dp"
android:layout_marginTop="10dp"
android:text="@string/lock_icon2"
android:textColor="@color/red"
android:textSize="25sp" />
</FrameLayout>
我在textview中使用图标图片。您可以根据需要使用此处的图像视图,图像按钮或任何其他布局。