Chromium Code Reviews| Index: chrome/android/java/res/layout/new_tab_page_incognito_md.xml |
| diff --git a/chrome/android/java/res/layout/new_tab_page_incognito_md.xml b/chrome/android/java/res/layout/new_tab_page_incognito_md.xml |
| index 146fd29dd46b1660b54d64a4362545d30831c42e..a231980d7e4fba06682578a5cb6e5b4f63f05dc2 100644 |
| --- a/chrome/android/java/res/layout/new_tab_page_incognito_md.xml |
| +++ b/chrome/android/java/res/layout/new_tab_page_incognito_md.xml |
| @@ -42,34 +42,42 @@ |
| android:id="@+id/new_tab_incognito_title" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| - android:fontFamily="sans-serif-light" |
| android:text="@string/new_tab_otr_title" |
| android:textColor="@color/incognito_header" /> |
| <TextView |
| android:id="@+id/new_tab_incognito_subtitle" |
| - android:layout_width="match_parent" |
| + android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| - android:fontFamily="sans-serif-light" |
| android:text="@string/new_tab_otr_subtitle" |
| android:textColor="@color/incognito_header" |
| - android:lineSpacingExtra="6sp" /> |
| - |
| - <TextView |
| - android:id="@+id/new_tab_incognito_features" |
| - android:layout_width="match_parent" |
| - android:layout_height="wrap_content" |
| android:singleLine="false" |
|
Michael van Ouwerkerk
2017/06/30 10:30:39
Here and below: the default value is false, so thi
msramek
2017/06/30 13:27:23
Done.
|
| - android:textColor="@color/incognito_text" |
| android:lineSpacingExtra="6sp" /> |
| - <TextView |
| - android:id="@+id/new_tab_incognito_warning" |
| - android:layout_width="match_parent" |
| + <LinearLayout |
| + android:id="@+id/new_tab_incognito_bulletpoints_container" |
| + android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| - android:singleLine="false" |
| - android:textColor="@color/incognito_text" |
| - android:lineSpacingExtra="6sp" /> |
| + android:orientation="horizontal" |
| + android:gravity="start"> |
| + |
| + <TextView |
| + android:id="@+id/new_tab_incognito_features" |
| + android:layout_width="wrap_content" |
| + android:layout_height="wrap_content" |
| + android:singleLine="false" |
| + android:textColor="@color/incognito_text" |
| + android:lineSpacingExtra="6sp" /> |
| + |
| + <TextView |
| + android:id="@+id/new_tab_incognito_warning" |
| + android:layout_width="wrap_content" |
| + android:layout_height="wrap_content" |
| + android:singleLine="false" |
| + android:textColor="@color/incognito_text" |
| + android:lineSpacingExtra="6sp" /> |
| + |
| + </LinearLayout> |
| <TextView |
| android:id="@+id/learn_more" |