OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
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"?> | |
5 <merge xmlns:android="http://schemas.android.com/apk/res/android"> | |
6 <FrameLayout | |
Ted C
2013/03/06 01:41:56
this block should be indented 4 and it's 2 here an
Yusuf
2013/03/06 19:50:00
Done.
| |
7 android:layout_width="match_parent" | |
8 android:layout_height="wrap_content"> | |
9 <ImageView | |
10 android:layout_width="wrap_content" | |
11 android:layout_height="44dp" | |
12 android:layout_gravity="left" | |
13 android:layout_margin="5dp" | |
14 android:src="@drawable/wallet_logo"/> | |
15 <Spinner | |
16 android:layout_width="200dp" | |
17 android:layout_height="wrap_content" | |
18 android:id="@+id/accounts_spinner" | |
19 android:layout_gravity="right" | |
20 android:layout_margin="10dp"/> | |
21 </FrameLayout> | |
22 </merge> | |
Ted C
2013/03/06 01:41:56
decrease indent.
Yusuf
2013/03/06 19:50:00
Done.
| |
OLD | NEW |