79 lines
2.9 KiB
XML
79 lines
2.9 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:card_view="http://schemas.android.com/apk/res-auto"
|
||
|
android:id="@+id/bgsource_cardview"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center"
|
||
|
card_view:cardBackgroundColor="@color/cardColorBackground"
|
||
|
card_view:cardCornerRadius="6dp"
|
||
|
card_view:cardUseCompatPadding="true"
|
||
|
card_view:contentPadding="6dp">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:gravity="center"
|
||
|
android:orientation="horizontal">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/bgsource_date"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="16:55"
|
||
|
android:textStyle="bold" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/bgsource_value"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:paddingStart="10dp"
|
||
|
android:text="Name"
|
||
|
android:textStyle="bold" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/bgsource_direction"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="1"
|
||
|
android:paddingStart="10dp"
|
||
|
android:text="-" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/ns_sign"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:paddingStart="10dp"
|
||
|
android:text="NS"
|
||
|
android:textAlignment="viewEnd"
|
||
|
android:textColor="@color/colorSetTempButton" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/invalid_sign"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:paddingStart="10dp"
|
||
|
android:text="@string/invalid"
|
||
|
android:textColor="@android:color/holo_red_light" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/bgsource_remove"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:paddingEnd="5dp"
|
||
|
android:paddingStart="10dp"
|
||
|
android:text="@string/overview_quickwizard_item_remove_button"
|
||
|
android:textAlignment="viewEnd"
|
||
|
android:textColor="@android:color/holo_orange_light" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
</android.support.v7.widget.CardView>
|