~vedu/mafia-android/master

« back to all changes in this revision

Viewing changes to res/layout/list_item.xml

  • Committer: Vedant Agrwala
  • Date: 2013-11-14 09:10:05 UTC
  • Revision ID: vedant.kota@gmail.com-20131114091005-mv8oabe8o4fugzo8
Initial work

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="utf-8"?>
 
2
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 
3
    android:layout_width="match_parent"
 
4
    android:layout_height="match_parent"
 
5
    android:orientation="horizontal" >
 
6
 
 
7
    <TextView
 
8
        android:id="@+id/layoutText"
 
9
        android:layout_width="0dp"
 
10
        android:layout_height="wrap_content"
 
11
        android:layout_weight="1"/>
 
12
 
 
13
    <Button
 
14
        android:id="@+id/minusButton"
 
15
        style="?android:attr/buttonStyleSmall"
 
16
        android:layout_width="wrap_content"
 
17
        android:layout_height="wrap_content"
 
18
        android:text="-" />
 
19
 
 
20
    <EditText
 
21
        android:id="@+id/numInput"
 
22
        android:layout_width="wrap_content"
 
23
        android:layout_height="wrap_content"
 
24
        android:inputType="number"
 
25
        android:text="0" />
 
26
 
 
27
    <Button
 
28
        android:id="@+id/plusButton"
 
29
        style="android:buttonStyle"
 
30
        android:layout_width="wrap_content"
 
31
        android:layout_height="wrap_content"
 
32
        android:text="+" />
 
33
 
 
34
</LinearLayout>