OLD | NEW |
---|---|
(Empty) | |
1 <?xml version="1.0" encoding="utf-8"?> | |
gone
2016/12/13 23:14:30
Can you name this (and all related things) somethi
jdoerrie
2016/12/15 13:27:18
Done.
| |
2 <!-- Copyright 2016 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 <LinearLayout | |
7 xmlns:android="http://schemas.android.com/apk/res/android" | |
gone
2016/12/13 23:14:30
indent by 4s not 2s; check the XML file above
jdoerrie
2016/12/15 13:27:18
Done.
| |
8 android:id="@+id/psl_info_tooltip" | |
9 android:background="@drawable/psl_info_tooltip_background" | |
10 android:orientation="horizontal" | |
11 android:layout_width="fill_parent" | |
gone
2016/12/13 23:14:30
fill_parent is deprecated; use match_parent
jdoerrie
2016/12/15 13:27:18
Acknowledged.
| |
12 android:layout_height="fill_parent"> | |
gone
2016/12/13 23:14:30
layout params at top
jdoerrie
2016/12/15 13:27:18
Acknowledged.
| |
13 <TextView | |
14 android:id="@+id/psl_info_tooltip_text" | |
15 android:layout_height="@dimen/psl_info_tooltip_height" | |
gone
2016/12/13 23:14:30
I don't think you need the outer LinearLayout. Th
jdoerrie
2016/12/15 13:27:18
Done.
| |
16 android:layout_marginEnd="@dimen/psl_info_tooltip_horizontal_padding" | |
17 android:layout_marginStart="@dimen/psl_info_tooltip_horizontal_padding" | |
18 android:layout_width="wrap_content" | |
19 android:ellipsize="start" | |
20 android:fontFamily="sans-serif" | |
21 android:gravity="center" | |
22 android:singleLine="true" | |
23 android:textColor="#fff" | |
gone
2016/12/13 23:14:30
android:textColor="@android:color/white"
jdoerrie
2016/12/15 13:27:18
Done.
| |
24 android:textSize="@dimen/psl_info_tooltip_text_size"/> | |
25 </LinearLayout> | |
OLD | NEW |