Browse Source

added tud, cased and tk logos on about fragment

Daniel Lazar 11 years ago
parent
commit
cf8c843a45

BIN
res/drawable/cased_logo.png


BIN
res/drawable/tk_logo.png


BIN
res/drawable/tud_logo.png


+ 32 - 3
res/layout/fragment_about.xml

@@ -10,7 +10,6 @@
 			android:layout_height="match_parent"
 			android:id="@+id/imageView" android:src="@drawable/hostage_logo_tilted"
 			android:layout_weight="0.6" android:layout_margin="24dp"/>
-
 	<TextView
 			android:layout_width="wrap_content"
 			android:layout_height="wrap_content"
@@ -25,16 +24,18 @@
 			android:text="a low-interaction honeypot for mobile devices"
 			android:id="@+id/textView7" android:layout_gravity="center_horizontal"
 			/>
+
     <ScrollView android:layout_width="wrap_content"
                 android:layout_height="wrap_content"
                 android:layout_marginLeft="15dp"
                 android:layout_marginBottom="10dp"
                 android:layout_marginRight="15dp">
+
 	<RelativeLayout
 			android:orientation="horizontal"
 			android:layout_width="fill_parent"
 			android:layout_height="fill_parent" android:layout_weight="0.7"
-			android:paddingTop="20dp">
+			android:paddingTop="15dp">
 
 		<LinearLayout
 				android:orientation="vertical"
@@ -101,7 +102,7 @@
 			          android:textAlignment="center" android:layout_gravity="right"/>
 			<TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
 			          android:textAppearance="?android:attr/textAppearanceMedium"
-			          android:text="Wulf Pfeiffer" android:id="@+id/record_conversation_type"
+			          android:text="Wulf Pfeiffer" 
 			          android:singleLine="false"
 			          android:autoText="false" android:layout_marginTop="4dp"
 			          android:textAlignment="center" android:layout_gravity="right"/>
@@ -114,4 +115,32 @@
 		</LinearLayout>
 	</RelativeLayout>
     </ScrollView>
+    <LinearLayout
+        android:orientation="horizontal"
+        android:layout_width="fill_parent"
+        android:layout_height="fill_parent"
+        android:layout_weight="1"
+        android:paddingTop="5dp"
+        android:layout_marginBottom="5dp">
+        <ImageView
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:src="@drawable/tud_logo"
+            android:layout_marginLeft="5dp"
+            android:layout_marginRight="5dp"
+            android:layout_weight="0.5"/>
+        <ImageView
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:src="@drawable/cased_logo"
+            android:layout_marginRight="5dp"
+            android:layout_weight="0.5"/>
+        <ImageView
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:src="@drawable/tk_logo"
+            android:layout_marginLeft="5dp"
+            android:layout_marginRight="5dp"
+            android:layout_weight="0.1"/>
+    </LinearLayout>
 </LinearLayout>