Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <?xml version="1.0" encoding="utf-8"?> | |
| 2 <!-- Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
| 3 | |
| 4 Use of this source code is governed by a BSD-style license that can be | |
| 5 found in the LICENSE file. | |
| 6 --> | |
| 7 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
| 8 android:orientation="horizontal" | |
| 9 android:layout_width="match_parent" | |
| 10 android:layout_height="match_parent" | |
| 11 android:paddingTop="@dimen/certificate_viewer_padding" | |
| 12 android:paddingBottom="@dimen/certificate_viewer_padding"> | |
| 13 <ImageView android:id="@+id/website_settings_icon" | |
| 14 android:layout_width="wrap_content" | |
| 15 android:layout_height="wrap_content" | |
| 16 android:paddingLeft="@dimen/certificate_viewer_padding"/> | |
| 17 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
|
Ted C
2013/01/25 19:33:26
don't need the xmlns: here...it's only needed for
| |
| 18 android:orientation="vertical" | |
| 19 android:layout_width="wrap_content" | |
| 20 android:layout_height="wrap_content" | |
| 21 android:paddingLeft="@dimen/certificate_viewer_padding" | |
| 22 android:paddingRight="@dimen/certificate_viewer_padding"> | |
| 23 <TextView android:id="@+id/website_settings_headline" | |
| 24 android:layout_width="wrap_content" | |
| 25 android:layout_height="wrap_content" | |
| 26 android:textStyle="bold"/> | |
| 27 <TextView android:id="@+id/website_settings_description" | |
| 28 android:layout_width="wrap_content" | |
| 29 android:layout_height="wrap_content"/> | |
| 30 </LinearLayout> | |
| 31 </LinearLayout> | |
| OLD | NEW |