d6367fe9
badetitou
Ajout liste
|
1
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
dd839264
badetitou
All done
|
2
3
4
5
6
|
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="net.plil.clubinfo.etunicorn.app.Crediter">
|
d6367fe9
badetitou
Ajout liste
|
7
8
9
10
11
12
13
14
15
16
|
<EditText
android:inputType="numberSigned"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="@string/enter_money"
android:id="@+id/crediter_ask_money"
android:ems="10"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true"
android:gravity="center"/>
|
dd839264
badetitou
All done
|
17
|
|
d6367fe9
badetitou
Ajout liste
|
18
19
20
21
22
23
24
25
26
27
28
29
|
<ProgressBar
style="?android:attr/progressBarStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_alignParentStart="true"
android:id="@+id/crediter_progress_bar"
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true"
android:visibility="gone"/>
</RelativeLayout>
|