Skip to content

Commit

Permalink
Update res/layout/poi_details.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
debermax committed May 11, 2012
1 parent 30be60d commit decb00f
Showing 1 changed file with 37 additions and 13 deletions.
50 changes: 37 additions & 13 deletions res/layout/poi_details.xml
@@ -1,47 +1,71 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
style="@style/MainStyleNoBg" >
style="@style/MainStyle" >

<LinearLayout
android:id="@+id/info_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:background="@drawable/listroundedcorners"
android:orientation="vertical"
android:padding="10dp" >

<TextView
android:id="@+id/description_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginTop="10dp"
android:textStyle="bold"
android:text="@string/poi_description_text" />

android:text="@string/poi_description_text"
android:textStyle="bold"
android:textColor="#33B5E5"
android:layout_marginBottom="4dp"/>

<LinearLayout
android:background="#33B5E5"
android:layout_width="fill_parent"
android:layout_height="1.5dp"
android:layout_marginBottom="4dp"
></LinearLayout>

<TextView
android:id="@+id/description"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginTop="5dp"
android:text="This is a freakin' description!" />

android:text="This is a freakin&apos; description!"
android:layout_marginBottom="12dp"
/>

<TextView
android:id="@+id/address_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginTop="10dp"
android:text="@string/poi_address_text"
android:textStyle="bold"
android:text="@string/poi_address_text" />
android:textColor="#33B5E5"
android:layout_marginBottom="2dp"

/>

<LinearLayout
android:background="#33B5E5"
android:layout_width="fill_parent"
android:layout_height="1.5dp"
android:layout_marginBottom="4dp"
></LinearLayout>

<TextView
android:id="@+id/address"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginTop="5dp"
android:text="Bigandlong street, 8\n18892 London\nUnited Kingdoms" />

android:text="Bigandlong street, 8\n18892 London\nUnited Kingdoms"
android:layout_marginBottom="10dp"/>
</LinearLayout>

</LinearLayout>

0 comments on commit decb00f

Please sign in to comment.