|
|
@ -3,7 +3,8 @@ |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="match_parent" |
|
|
|
android:orientation="vertical" |
|
|
|
android:paddingBottom="20dp"> |
|
|
|
android:paddingBottom="20dp" |
|
|
|
android:background="@drawable/fond"> |
|
|
|
|
|
|
|
<TextView |
|
|
|
android:id="@+id/title_payment" |
|
|
@ -16,6 +17,16 @@ |
|
|
|
android:textSize="36sp" |
|
|
|
android:textStyle="bold" /> |
|
|
|
|
|
|
|
<TextView |
|
|
|
android:id="@+id/textView" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_weight="0.4" |
|
|
|
android:gravity="center" |
|
|
|
android:textStyle="bold" |
|
|
|
android:textSize="26sp" |
|
|
|
android:text="Saisie du montant" /> |
|
|
|
|
|
|
|
<FrameLayout |
|
|
|
android:id="@+id/frame_layout_number" |
|
|
|
android:layout_width="match_parent" |
|
|
@ -25,19 +36,37 @@ |
|
|
|
android:paddingRight="50dp" |
|
|
|
android:paddingBottom="20dp"> |
|
|
|
|
|
|
|
<EditText |
|
|
|
android:id="@+id/edit_number" |
|
|
|
<LinearLayout |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_gravity="center" |
|
|
|
android:layout_weight="1" |
|
|
|
android:ems="10" |
|
|
|
android:focusable="true" |
|
|
|
android:focusableInTouchMode="true" |
|
|
|
android:gravity="center" |
|
|
|
android:inputType="numberDecimal" |
|
|
|
android:paddingRight="30dp" |
|
|
|
android:textSize="36sp" /> |
|
|
|
android:layout_height="match_parent" |
|
|
|
android:orientation="horizontal"> |
|
|
|
|
|
|
|
<EditText |
|
|
|
android:id="@+id/edit_number" |
|
|
|
android:layout_width="150dp" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_gravity="center" |
|
|
|
android:layout_weight="1.9" |
|
|
|
android:ems="10" |
|
|
|
android:focusable="true" |
|
|
|
android:focusableInTouchMode="true" |
|
|
|
android:foregroundGravity="center" |
|
|
|
android:gravity="center" |
|
|
|
android:layout_marginLeft="60dp" |
|
|
|
android:inputType="numberDecimal" |
|
|
|
android:textSize="36sp" /> |
|
|
|
|
|
|
|
<TextView |
|
|
|
android:id="@+id/textView2" |
|
|
|
android:layout_width="57dp" |
|
|
|
android:layout_height="40dp" |
|
|
|
android:layout_gravity="center" |
|
|
|
android:layout_weight=".1" |
|
|
|
android:gravity="center" |
|
|
|
android:textStyle="bold" |
|
|
|
android:textSize="26sp" |
|
|
|
android:text="€" /> |
|
|
|
</LinearLayout> |
|
|
|
|
|
|
|
</FrameLayout> |
|
|
|
|
|
|
|