dejsem.1.5/android/dejsem.studio/app/src/main/res/layout/file_entry.xml
changeset 0 676905a3b03c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dejsem.1.5/android/dejsem.studio/app/src/main/res/layout/file_entry.xml	Wed Nov 27 09:50:16 2019 +0100
@@ -0,0 +1,71 @@
+<LinearLayout
+	xmlns:android="http://schemas.android.com/apk/res/android"
+    android:layout_width="match_parent"
+    android:layout_height="wrap_content"
+    android:orientation="horizontal"
+   	android:background="@color/file_list_bg"
+	>
+
+	<CheckBox
+	    android:id="@+id/fcb"
+	    android:layout_width="wrap_content"
+	    android:layout_height="wrap_content"
+	    android:focusable="false"
+		/>
+	
+	<ImageView
+	    android:id="@+id/fic"
+	    android:layout_width="wrap_content"
+	    android:layout_height="wrap_content"
+		android:layout_marginRight="3dp"
+	    android:adjustViewBounds="true"
+	    android:scaleType="centerInside"
+		/>
+
+    <LinearLayout
+        android:id="@+id/fllv"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:orientation="vertical"
+	    >
+
+		<TextView
+		    android:id="@+id/fname"
+		    android:layout_width="match_parent"
+		    android:layout_height="wrap_content"
+		    android:ellipsize="end"
+		    android:maxLines="1"
+		    android:textColor="@color/file_name_color"
+		    android:textSize="@dimen/file_name_size"
+			/>
+		    
+	    <LinearLayout
+	        android:id="@+id/fllh"
+	        android:layout_width="match_parent"
+	        android:layout_height="wrap_content"
+	        android:orientation="horizontal"
+		    >
+
+			<TextView
+			    android:id="@+id/fsize"
+			    android:layout_width="0dp"
+			    android:layout_height="wrap_content"
+	        	android:layout_weight="1"
+			    android:textColor="@color/file_size_color"
+			    android:textSize="@dimen/file_attr_size"
+				/>
+
+			<TextView
+			    android:id="@+id/fdate"
+			    android:layout_width="0dp"
+			    android:layout_height="wrap_content"
+	        	android:layout_weight="1"
+			    android:textColor="@color/file_date_color"
+			    android:textSize="@dimen/file_attr_size"
+				/>
+
+		</LinearLayout>
+
+	</LinearLayout>
+	
+</LinearLayout>
\ No newline at end of file