-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactivity_main.xml
More file actions
53 lines (43 loc) · 1.73 KB
/
Copy pathactivity_main.xml
File metadata and controls
53 lines (43 loc) · 1.73 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="udacity.nethapps.appportfolio.MainActivity" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:layout_gravity="center_horizontal"
android:orientation="vertical" >
<Button
style="@style/UdacityStyle"
android:id="@+id/spotifyStreamer"
android:text="@string/spotifyStreamer" />
<Button
style="@style/UdacityStyle"
android:id="@+id/scoresApp"
android:text="@string/scoresApp" />
<Button
style="@style/UdacityStyle"
android:id="@+id/libraryApp"
android:text="@string/libraryApp" />
<Button
style="@style/UdacityStyle"
android:id="@+id/buildItBigger"
android:text="@string/buildItBigger" />
<Button
style="@style/UdacityStyle"
android:id="@+id/XYZReader"
android:text="@string/XYZReader" />
<Button
style="@style/UdacityStyle"
android:id="@+id/capstone"
android:text="@string/capstone"
android:background="#ffcd0e3e"
android:textColor="#ffff" />
</LinearLayout>
</ScrollView>