59 lines
1.8 KiB
XML
59 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:orientation="horizontal"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:minWidth="25px"
|
|
android:minHeight="25px">
|
|
<TextView
|
|
android:layout_width="144dp"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/products_row_name"
|
|
android:hint="Name"
|
|
android:textSize="14dp"
|
|
android:singleLine="true" />
|
|
<TextView
|
|
android:layout_width="48dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_toRightOf="@id/products_row_name"
|
|
android:id="@+id/products_row_kcal"
|
|
android:hint="Kcal"
|
|
android:textSize="14dp"
|
|
android:singleLine="true" />
|
|
<TextView
|
|
android:layout_width="48dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_toRightOf="@id/products_row_kcal"
|
|
android:id="@+id/products_row_fat"
|
|
android:hint="Fat"
|
|
android:textSize="14dp"
|
|
android:singleLine="true" />
|
|
<TextView
|
|
android:layout_width="48dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_toRightOf="@id/products_row_fat"
|
|
android:id="@+id/products_row_carbs"
|
|
android:hint="Carbs"
|
|
android:textStyle="normal"
|
|
android:textSize="14dp"
|
|
android:singleLine="true" />
|
|
<TextView
|
|
android:layout_width="48dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_toRightOf="@id/products_row_carbs"
|
|
android:id="@+id/products_row_protein"
|
|
android:hint="Protein"
|
|
android:textSize="14dp"
|
|
android:singleLine="true" />
|
|
<TextView
|
|
android:layout_width="48dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_toRightOf="@id/products_row_protein"
|
|
android:id="@+id/products_row_cost"
|
|
android:hint="Cost"
|
|
android:textSize="14dp"
|
|
android:singleLine="true" />
|
|
</RelativeLayout> |