Home | History | Annotate | Download | only in layout

Lines Matching full:android

2   Copyright (C) 2011 The Android Open Source Project
17 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
18 android:orientation="vertical"
19 android:layout_width="fill_parent"
20 android:layout_height="fill_parent"
21 android:gravity="center"
22 android:background="#000040">
24 <TextView android:text="@string/app_title"
25 android:layout_width="wrap_content"
26 android:layout_height="wrap_content"
27 android:padding="20dp"
28 android:textColor="#ffffff"
29 android:textSize="20sp"
30 android:textStyle="bold" />
32 <LinearLayout android:orientation="horizontal"
33 android:layout_width="wrap_content"
34 android:layout_height="wrap_content"
35 android:gravity="center"
36 android:layout_margin="10dp">
37 <Button android:id="@+id/rewindbutton"
38 android:background="@drawable/btn_rew"
39 android:layout_width="64dp"
40 android:layout_height="64dp"
41 android:layout_margin="5dp" />
42 <Button android:id="@+id/playbutton"
43 android:background="@drawable/btn_play"
44 android:layout_width="64dp"
45 android:layout_height="64dp"
46 android:layout_margin="5dp" />
47 <Button android:id="@+id/pausebutton"
48 android:background="@drawable/btn_pause"
49 android:layout_width="64dp"
50 android:layout_height="64dp"
51 android:layout_margin="5dp" />
52 <Button android:id="@+id/skipbutton"
53 android:background="@drawable/btn_ff"
54 android:layout_width="64dp"
55 android:layout_height="64dp"
56 android:layout_margin="5dp" />
59 <LinearLayout android:orientation="horizontal"
60 android:layout_width="wrap_content"
61 android:layout_height="wrap_content"
62 android:gravity="center"
63 android:layout_margin="10dp">
64 <Button android:id="@+id/stopbutton"
65 android:background="@drawable/btn_stop"
66 android:layout_width="64dp"
67 android:layout_height="64dp"
68 android:layout_margin="5dp" />
69 <Button android:id="@+id/ejectbutton"
70 android:background="@drawable/btn_eject"
71 android:layout_width="64dp"
72 android:layout_height="64dp"
73 android:layout_margin="5dp" />