OLD | NEW |
---|---|
(Empty) | |
1 <?xml version="1.0" encoding="utf-8"?> | |
2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. | |
3 Use of this source code is governed by a BSD-style license that can be | |
4 found in the LICENSE file. --> | |
5 | |
6 <FrameLayout | |
7 xmlns:android="http://schemas.android.com/apk/res/android" | |
8 android:layout_width="wrap_content" | |
9 android:layout_height="wrap_content"> | |
10 <ListView | |
11 android:id="@+id/account_list" | |
12 android:layout_width="match_parent" | |
13 android:layout_height="match_parent" | |
newt (away)
2015/02/19 22:56:00
I'd leave this as wrap_content. It doesn't really
melandory
2015/02/19 23:12:34
Done.
| |
14 android:padding="8dp"/> | |
15 </FrameLayout> | |
OLD | NEW |