~igor-cali/bilancio/stable

« back to all changes in this revision

Viewing changes to android/API24/main/res/layout/funds_add.xml

  • Committer: Igor Calì
  • Date: 2019-04-07 16:24:48 UTC
  • Revision ID: igor.cali0@gmail.com-20190407162448-5mfwr7c39y3kzz6u
 v3.3.1.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0" encoding="utf-8"?>
2
 
 
3
 
<!-- /***************************************************************
4
 
* Name:
5
 
* Purpose:   OpenMoneyBox add fund layout
6
 
* Author:    Igor Calì (igor.cali0@gmail.com)
7
 
* Created:   2017-09-07
8
 
* Copyright: Igor Calì (igor.cali0@gmail.com)
9
 
* License:              GNU
10
 
**************************************************************/
11
 
-->
12
 
 
13
 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
14
 
    xmlns:tools="http://schemas.android.com/tools"
15
 
    android:layout_width="match_parent"
16
 
    android:layout_height="match_parent"
17
 
    android:orientation="vertical" >
18
 
 
19
 
    <TextView
20
 
        android:id="@+id/Caption"
21
 
        android:layout_width="wrap_content"
22
 
        android:layout_height="wrap_content"
23
 
        android:layout_gravity="center_horizontal"
24
 
        android:layout_marginBottom="20dp"
25
 
        android:layout_marginTop="20dp"
26
 
        android:text="@string/fund_add"
27
 
        android:textAppearance="?android:attr/textAppearanceLarge" />
28
 
 
29
 
    <LinearLayout
30
 
        android:layout_width="match_parent"
31
 
        android:layout_height="wrap_content"
32
 
        android:orientation="horizontal">
33
 
 
34
 
        <EditText
35
 
            android:id="@+id/Name"
36
 
            android:layout_width="300dp"
37
 
            android:layout_height="match_parent"
38
 
            android:ems="10"
39
 
            android:hint="@string/fund_insert"
40
 
            android:inputType="text" />
41
 
 
42
 
        <ImageButton
43
 
            android:id="@+id/searchButton"
44
 
            android:layout_width="match_parent"
45
 
            android:layout_height="match_parent"
46
 
            android:onClick="searchContact"
47
 
            android:src="@android:drawable/ic_menu_search"
48
 
            android:contentDescription="@string/search"
49
 
        />
50
 
 
51
 
    </LinearLayout>
52
 
 
53
 
    <EditText
54
 
        android:id="@+id/Value"
55
 
        android:layout_width="match_parent"
56
 
        android:layout_height="wrap_content"
57
 
        android:hint="@string/fund_value"
58
 
        android:inputType="numberDecimal" />
59
 
 
60
 
    <ImageButton
61
 
        android:id="@+id/imageButton1"
62
 
        android:layout_width="wrap_content"
63
 
        android:layout_height="wrap_content"
64
 
        android:layout_gravity="end"
65
 
        android:contentDescription="@string/dialog_confirm"
66
 
        android:onClick="okBtnClick"
67
 
        android:src="@android:drawable/ic_menu_edit" />
68
 
 
69
 
</LinearLayout>