2015-07-02 08:36:51 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/LinearLayout1"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="4dp"
|
|
|
|
android:background="@color/light_grey_1"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:showDividers="middle" >
|
|
|
|
|
|
|
|
<ScrollView
|
|
|
|
android:id="@+id/scrollView1"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" >
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/imageView"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="8dp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/addressTextView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="8dp"
|
|
|
|
android:background="@color/bkg2"
|
|
|
|
android:text="TextView"
|
|
|
|
android:textSize="18sp" />
|
|
|
|
|
2015-07-02 10:49:20 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/hintTextView"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/hold_address" />
|
|
|
|
|
2015-07-02 08:36:51 +00:00
|
|
|
<Button
|
|
|
|
android:id="@+id/button"
|
|
|
|
style="?android:attr/borderlessButtonStyle"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="8dp"
|
|
|
|
android:background="@color/bkg2"
|
|
|
|
android:drawableLeft="@drawable/ic_action_call"
|
|
|
|
android:gravity="left|center_vertical"
|
|
|
|
android:text="Button"
|
|
|
|
android:textSize="30sp" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</ScrollView>
|
|
|
|
|
|
|
|
</LinearLayout>
|