-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactivity_details.xml
More file actions
99 lines (81 loc) · 3.13 KB
/
activity_details.xml
File metadata and controls
99 lines (81 loc) · 3.13 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_details"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="6dip"
tools:context="com.example.yusuph.andela.DetailsActivity">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="85dp"
android:padding="6dip"
>
<ImageView
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_centerVertical="true"
android:id="@+id/imageView2"
android:adjustViewBounds="false"
android:cropToPadding="false"
android:contentDescription="TODO"
/>
<TextView
android:text="Username:"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toRightOf="@+id/imageView2"
android:layout_toEndOf="@+id/imageView2"
android:layout_marginLeft="36dp"
android:layout_marginStart="36dp"
android:layout_marginTop="19dp"
android:id="@+id/textView"
/>
<TextView
android:text="TextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/textView"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
android:layout_marginRight="54dp"
android:layout_marginEnd="54dp"
android:id="@+id/textView2"
android:layout_alignTop="@+id/textView"
/>
<TextView
android:text="Githuh url:"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignLeft="@+id/textView"
android:layout_alignStart="@+id/textView"
android:layout_marginBottom="14dp"
android:id="@+id/textView3"
/>
<TextView
android:text="TextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/textView3"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
android:layout_marginRight="18dp"
android:layout_marginEnd="18dp"
android:id="@+id/textView5"
/>
</RelativeLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Share"
android:id="@+id/share"
/>
</LinearLayout>
</LinearLayout>