Blame view

app/src/main/res/layout/fragment_modify_event.xml 1.07 KB
8bcd81b8   badetitou   some staff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      xmlns:tools="http://schemas.android.com/tools"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      tools:context="net.plil.clubinfo.etunicorn.app.event.ModifyEvent"
      android:orientation="vertical">
  
      <EditText
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:id="@+id/modify_event_name" />
  
      <EditText
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:id="@+id/modify_event_price"/>
  
  
      <EditText
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:id="@+id/modify_event_date"
          android:inputType="date" />
  
  
      <ProgressBar
          style="?android:attr/progressBarStyle"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:id="@+id/modify_event_progress_bar"
          android:layout_gravity="center"
          android:visibility="gone"/>
  
  
  </LinearLayout>