按钮与填充部分和图像部分-android

时间:2014-07-18 08:55:59

标签: android view

enter image description here

我想做一些像图像的事情。

这是一个电子邮件填充按钮。当用户输入他的电子邮件时,应禁用标题“אימייל”(“电子邮件”),以便使用时无法触摸它。

这样做的方法是什么? 谢谢:))

2 个答案:

答案 0 :(得分:1)

你可以这样做:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#F2F2F2"
android:orientation="horizontal" >

<TextView
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:padding="3dp"
    android:text="Your mail" />

<View
    android:layout_width="1dp"
    android:layout_height="30dp"
    android:layout_marginBottom="3dp"
    android:layout_marginTop="3dp"
    android:background="#000000"
    android:text="New Button" />

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:background="@android:color/transparent"
    android:padding="5dp"
    android:text="אימייל" />

结果是:

enter image description here

答案 1 :(得分:0)

为该edittext制作一个textwatcher,如果总字符数> 0,则另外启用按钮

Yourbutton.setEnable(false)

试试吧。 这是textwatcher示例

https://stackoverflow.com/a/8543479/2931489