-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservicesitem.xml
More file actions
32 lines (26 loc) · 1.03 KB
/
Copy pathservicesitem.xml
File metadata and controls
32 lines (26 loc) · 1.03 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
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="250dp"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
app:cardCornerRadius="10dp"
android:id="@+id/servicescardview"
android:layout_margin="10dp">
<ImageView
android:layout_width="match_parent"
android:layout_height="180dp"
android:id="@+id/serviceimage"
android:layout_margin="10dp"
android:src="@drawable/logo"
android:scaleType="centerCrop"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="servicetitle"
android:id="@+id/servicetitle"
android:layout_marginTop="200dp"
android:gravity="center"
android:textColor="#000"
android:textSize="12sp"/>
</android.support.v7.widget.CardView>