blob: c6623d18ae8ebecf29fb03ce7416102eb9a38776 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2014 Cyanogen, Inc.
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="@dimen/component_selection_cell_height_boot_anim"
android:background="@drawable/component_selection_selector">
<ImageView
android:id="@+id/preview"
android:layout_width="@dimen/component_selection_bootani_content_width"
android:layout_height="@dimen/component_selection_bootani_content_height"
android:layout_marginTop="@dimen/component_margin_top"
android:layout_gravity="center_horizontal"/>
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
style="@style/component_title"/>
</LinearLayout>
|