source: other-projects/tipple-android/res/layout/markerpopup.xml@ 26523

Last change on this file since 26523 was 26523, checked in by davidb, 11 years ago

A version of Tipple with the mods Casey made for her Masters work

File size: 1.9 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="wrap_content"
4 android:layout_height="wrap_content"
5 android:orientation="horizontal"
6 android:minWidth="200dip"
7 android:gravity="center_horizontal">
8
9 <LinearLayout
10 android:layout_width="fill_parent"
11 android:layout_height="wrap_content"
12 android:orientation="horizontal"
13 android:gravity="center_vertical"
14 android:layout_weight="1"
15 android:padding="1.5dp" >
16
17 <ImageView
18 android:id="@+id/iPopupImage"
19 android:layout_width="40dip"
20 android:layout_height="54dip"
21 android:paddingTop="10dip"
22 android:paddingRight="10dip" />
23
24 <LinearLayout
25 android:layout_width="0dp"
26 android:layout_height="wrap_content"
27 android:layout_weight="1"
28 android:orientation="vertical"
29 android:paddingTop="10dip" >
30
31
32 <TextView
33 android:id="@+id/tTitle"
34 android:layout_width="wrap_content"
35 android:layout_height="wrap_content"
36 android:scrollbars="vertical"
37 android:scrollbarStyle="insideInset"
38 android:text=""
39 android:focusable="false" />
40
41 <TextView
42 android:id="@+id/tSnippet"
43 android:layout_width="match_parent"
44 android:layout_height="wrap_content"
45 android:singleLine="false"
46 android:text=""
47 android:textAppearance="?android:attr/textAppearanceSmall" />
48
49 </LinearLayout>
50 </LinearLayout>
51
52
53</LinearLayout>
Note: See TracBrowser for help on using the repository browser.