z_lineaarticulo_inventario_dinamico.xml
2.73 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?xml version="1.0" encoding="utf-8"?>
<TableRow xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="740dp"
android:layout_height="wrap_content"
android:background="@color/verde_claro"
android:paddingBottom="1dp"
android:paddingTop="1dp"
android:layout_marginStart="3dp" >
<TextView
android:id="@+id/ZLIN_codigo"
android:layout_width="100dp"
android:layout_height="fill_parent"
android:layout_marginStart="1dp"
android:layout_marginEnd="1dp"
android:background="@color/black"
android:gravity="center_vertical"
android:padding="6dp"
android:singleLine="true"
android:textColor="@color/white"
android:textSize="@dimen/medioGrande" />
<TextView
android:id="@+id/ZLIN_descripcion"
android:layout_width="342dp"
android:layout_height="fill_parent"
android:layout_marginEnd="1dp"
android:background="@color/black"
android:gravity="center_vertical"
android:padding="6dp"
android:singleLine="true"
android:textColor="@color/white"
android:textSize="@dimen/medioGrande" />
<TextView
android:id="@+id/ZLIN_precio"
android:layout_width="90dp"
android:layout_height="fill_parent"
android:layout_marginEnd="1dp"
android:background="@color/black"
android:gravity="center"
android:padding="6dp"
android:singleLine="true"
android:textColor="@color/white"
android:textSize="@dimen/medioGrande" />
<EditText
android:id="@+id/ZLIN_cantidad"
android:layout_width="105dp"
android:layout_height="fill_parent"
android:layout_marginEnd="1dp"
android:cursorVisible="true"
android:focusable="false"
android:gravity="center"
android:inputType="number"
android:maxLength="6"
android:singleLine="true"
android:text="No tomado"
android:textColor="@color/anaranjado_verde"
android:textSize="@dimen/talla_texto_medioGrande"
android:background="@color/black" />
<!-- Este lo agregue -->
<TextView
android:id="@+id/ZLIN_existente"
android:layout_width="95dp"
android:layout_height="fill_parent"
android:layout_marginEnd="1dp"
android:background="@color/black"
android:gravity="center"
android:padding="6dp"
android:singleLine="true"
android:textColor="@color/white"
android:textSize="@dimen/medioGrande" />
<TextView
android:id="@+id/ZLIN_secreto"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:visibility="gone" />
</TableRow>