| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:background="@drawable/section"
- android:orientation="vertical"
- android:padding="7dp">
- <LinearLayout
- android:id="@+id/ll_dialog_schedule_buttons"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true"
- android:orientation="horizontal" >
- <Button
- android:id="@+id/bt_schedule_close"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginBottom="5dp"
- android:layout_marginEnd="25dp"
- android:layout_marginLeft="25dp"
- android:layout_marginRight="25dp"
- android:layout_marginStart="25dp"
- android:layout_marginTop="5dp"
- android:layout_weight=".5"
- android:background="@drawable/button_selector"
- android:minHeight="40dp"
- android:text="@string/schedule_close"
- android:textColor="@color/input_button_color"
- android:textStyle="bold"/>
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_above="@id/ll_dialog_schedule_buttons"
- android:layout_alignParentTop="true"
- android:orientation="vertical"
- android:padding="10dp" >
- <TextView
- android:id="@+id/tv_dialog_schedule_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textAppearance="@android:style/TextAppearance.Large"/>
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/entry"
- android:padding="7dp">
- <TextView
- android:id="@+id/tv_dialog_schedule_description"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_margin="10dp"
- android:textAppearance="@android:style/TextAppearance.Medium"/>
- <TextView
- android:id="@+id/tv_dialog_schedule_host"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginStart="5dp"
- android:textStyle="italic"
- android:visibility="gone"
- android:textAppearance="@android:style/TextAppearance.Small"/>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="10dp" >
- <TextView
- android:id="@+id/tv_dialog_schedule_date"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textAppearance="@android:style/TextAppearance.Medium"/>
- <TextView
- android:id="@+id/tv_dialog_schedule_time"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginStart="10dp"
- android:textAppearance="@android:style/TextAppearance.Medium"/>
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_margin="10dp"
- android:orientation="horizontal" >
- <ImageView
- android:id="@+id/imageView1"
- android:layout_width="wrap_content"
- android:layout_height="fill_parent"
- android:adjustViewBounds="true"
- android:contentDescription="@string/arrow_right"
- android:maxHeight="50dp"
- android:maxWidth="50dp"
- android:scaleType="centerInside"
- android:src="@drawable/pinpoint" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical" >
- <TextView
- android:id="@+id/tv_dialog_schedule_place"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textAppearance="@android:style/TextAppearance.Medium"/>
- <TextView
- android:id="@+id/tv_dialog_schedule_address"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textStyle="italic"
- android:textAppearance="@android:style/TextAppearance.Small"/>
- </LinearLayout>
- </LinearLayout>
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_margin="20dp"
- android:background="@drawable/dialog_schedule_map"
- android:padding="3dp" >
- <com.google.android.gms.maps.MapView
- android:id="@+id/mv_dialog_schedule_map"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent" >
- </com.google.android.gms.maps.MapView>
- </LinearLayout>
- </LinearLayout>
- </LinearLayout>
- </RelativeLayout>
|