OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
Ted C
2013/03/06 01:41:56
Hmm...does this work?
I thought we needed to do t
Yusuf
2013/03/06 19:50:00
Done.
| |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 <?xml version="1.0" encoding="utf-8"?> | |
Ted C
2013/03/06 01:41:56
Also, this has gone above the copyright in all oth
Yusuf
2013/03/06 19:50:00
Done.
| |
5 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
6 android:layout_width="match_parent" | |
7 android:layout_height="wrap_content" | |
8 android:orientation="vertical"> | |
9 <TextView | |
10 android:id="@+id/name" | |
11 android:layout_width="match_parent" | |
12 android:layout_height="wrap_content" | |
13 android:textStyle="bold" | |
14 android:textSize="14sp" | |
15 android:padding="2dp"/> | |
16 <TextView | |
17 android:id="@+id/address" | |
18 android:layout_width="match_parent" | |
19 android:layout_height="wrap_content" | |
20 android:textSize="12sp" | |
21 android:padding="2dp"/> | |
22 </LinearLayout> | |
OLD | NEW |