I am trying to do a EditText
for a calc that calculate money. I want a EditText
like this "$0.00", and I don't know how to do when i click on a button for example, button 1, put the 1 at final like "$0.01", and the next number "$0.11".
<EditText
android:id="@+id/etPantalla"
android:drawableRight="@drawable/ic_launcher"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="false"
android:ellipsize="end"
android:ems="10"
android:maxLength="8"
android:focusable="false"
android:focusableInTouchMode="false"
android:gravity="right"
android:longClickable="false"
android:maxLines="1"
android:singleLine="true"
android:textSize="40sp" />