2014-07-20 02:39:46 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-07-20 19:16:19 +02:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-07-20 02:39:46 +02:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-07-20 19:16:19 +02:00
|
|
|
android:background="#eeeeee" >
|
2014-07-20 02:39:46 +02:00
|
|
|
|
2014-07-20 19:16:19 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="#ffffff"
|
|
|
|
android:layout_marginBottom="10dp"
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:layout_marginRight="10dp"
|
|
|
|
android:layout_marginTop="15dp"
|
|
|
|
android:orientation="vertical" >
|
2014-07-20 03:17:05 +02:00
|
|
|
|
2014-07-20 19:16:19 +02:00
|
|
|
<FrameLayout
|
2014-07-20 03:17:05 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-07-20 19:16:19 +02:00
|
|
|
android:background="@color/shadow_color" >
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/TourImage"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:scaleType="centerCrop"
|
|
|
|
>
|
|
|
|
</ImageView>
|
2014-07-20 03:17:05 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/TourName"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-07-20 19:16:19 +02:00
|
|
|
android:background="@color/shadow_color"
|
2014-07-20 03:17:05 +02:00
|
|
|
android:ellipsize="end"
|
2014-07-20 19:16:19 +02:00
|
|
|
android:layout_gravity="bottom"
|
2014-07-20 03:17:05 +02:00
|
|
|
android:maxLines="1"
|
|
|
|
android:textColor="@color/color_white"
|
2014-07-20 19:16:19 +02:00
|
|
|
android:textSize="20sp" />
|
|
|
|
</FrameLayout>
|
2014-07-20 02:39:46 +02:00
|
|
|
|
2014-07-20 19:16:19 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/TourDescription"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:layout_marginRight="5dp"
|
|
|
|
android:layout_marginTop="5dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="3"
|
|
|
|
android:textSize="20sp" />
|
|
|
|
</LinearLayout>
|
|
|
|
</FrameLayout>
|