summaryrefslogtreecommitdiffstats
path: root/res/layout/v2item_icon.xml
blob: ea74d67c1ec443544fccae10b25f59d43e8ff127 (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
26
27
28
29
30
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/icon_container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center_horizontal"
    android:orientation="horizontal"
    android:paddingLeft="30dp"
    android:paddingRight="40dp"
    android:paddingTop="40dp" >
    <ImageView
        android:layout_width="0px"
        android:layout_weight="1"
        android:layout_height="wrap_content"
        android:src="@drawable/comp_icon1"
        />
    <ImageView
        android:layout_width="0px"
        android:layout_weight="1"
        android:layout_height="wrap_content"
        android:src="@drawable/comp_icon2"
        />
    <ImageView
        android:layout_width="0px"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:src="@drawable/comp_icon3"
        />
</LinearLayout>