2012-08-06 09:39:27 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-08-06 12:56:53 +02:00
|
|
|
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_gravity="center_horizontal" >
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/logger_number_of_objects_title"
|
|
|
|
android:layout_width="132dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_column="0"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_row="0"
|
|
|
|
android:layout_rowSpan="1"
|
|
|
|
android:text="@string/number_of_objects" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/logger_number_of_objects"
|
|
|
|
android:layout_width="132dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_column="1"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_row="0"
|
|
|
|
android:layout_rowSpan="1"
|
|
|
|
android:text="" />
|
2012-08-06 09:39:27 +02:00
|
|
|
|
2012-08-06 12:56:53 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/logger_number_of_bytes_title"
|
|
|
|
android:layout_width="132dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_column="0"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_row="1"
|
|
|
|
android:layout_rowSpan="1"
|
|
|
|
android:text="@string/number_of_bytes" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/logger_number_of_bytes"
|
|
|
|
android:layout_width="132dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_column="1"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_row="1"
|
|
|
|
android:layout_rowSpan="1"
|
|
|
|
android:text="" />
|
|
|
|
|
|
|
|
<Space
|
|
|
|
android:layout_width="1dp"
|
|
|
|
android:layout_height="32dp"
|
|
|
|
android:layout_column="0"
|
|
|
|
android:layout_row="0" />
|
|
|
|
|
|
|
|
<Space
|
|
|
|
android:layout_width="100dp"
|
|
|
|
android:layout_height="69dp"
|
|
|
|
android:layout_row="1" />
|
2012-08-06 09:39:27 +02:00
|
|
|
|
2012-08-06 12:56:53 +02:00
|
|
|
</GridLayout>
|