dejsem.1.5/android/dejsem.studio/app/src/main/res/layout/progress_entry.xml
changeset 0 676905a3b03c
equal deleted inserted replaced
-1:000000000000 0:676905a3b03c
       
     1 <?xml version="1.0" encoding="utf-8"?>
       
     2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
       
     3     android:layout_width="fill_parent"
       
     4     android:layout_height="fill_parent"
       
     5     android:orientation="vertical"
       
     6     >
       
     7 
       
     8     <LinearLayout
       
     9         android:layout_width="fill_parent"
       
    10         android:layout_height="wrap_content"
       
    11         android:orientation="horizontal"
       
    12         >
       
    13 
       
    14         <ImageView
       
    15             android:id="@+id/cancel"
       
    16             android:layout_width="wrap_content"
       
    17             android:layout_height="wrap_content"
       
    18             android:layout_margin="8dp"
       
    19             android:src="@raw/cancel"
       
    20             />
       
    21 
       
    22         <LinearLayout
       
    23             android:layout_width="fill_parent"
       
    24             android:layout_height="wrap_content"
       
    25             android:orientation="vertical"
       
    26             >
       
    27 
       
    28             <LinearLayout
       
    29                 android:id="@+id/progressTitle"
       
    30                 android:layout_width="fill_parent"
       
    31                 android:layout_height="wrap_content"
       
    32                 android:orientation="horizontal"
       
    33                 >
       
    34 
       
    35                 <TextView
       
    36                     android:id="@+id/progressFiles"
       
    37                     android:layout_width="wrap_content"
       
    38                     android:layout_height="wrap_content"
       
    39                     android:text="TextView"
       
    40                     />
       
    41 
       
    42                 <TextView
       
    43                     android:id="@+id/progressFn"
       
    44                     android:layout_width="wrap_content"
       
    45                     android:layout_height="wrap_content"
       
    46                     android:singleLine="true"
       
    47                     android:text="TextView"
       
    48                     />
       
    49 
       
    50             </LinearLayout>
       
    51 
       
    52             <TextView
       
    53                 android:id="@+id/progressNum"
       
    54                 android:layout_width="fill_parent"
       
    55                 android:layout_height="wrap_content"
       
    56                 android:layout_marginHorizontal="8dp"
       
    57                 android:text="TextView"
       
    58                 />
       
    59 
       
    60         </LinearLayout>
       
    61 
       
    62     </LinearLayout>
       
    63 
       
    64     <ProgressBar
       
    65         android:id="@+id/progressBar"
       
    66         style="?android:attr/progressBarStyleHorizontal"
       
    67         android:layout_width="fill_parent"
       
    68         android:layout_height="wrap_content"
       
    69         android:layout_marginHorizontal="8dp"
       
    70         />
       
    71 
       
    72 </LinearLayout>