blob: 4b43b41e7ea7aff781f0cf50ab04b9a6ed77fe4c [file] [log] [blame]
starkdroid113e0c42017-01-18 20:23:38 +05301<?xml version="1.0" encoding="utf-8"?>
2<!--
3/**
4 * Copyright (c) 2013, The Android Open Kang Project
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18-->
19<FrameLayout
20 xmlns:android="http://schemas.android.com/apk/res/android"
21 android:layout_width="wrap_content"
22 android:layout_height="wrap_content"
23 android:paddingLeft="15dip"
24 android:paddingRight="15dip">
25
26 <RelativeLayout
27 android:id="@+id/image_here"
28 android:layout_width="wrap_content"
29 android:layout_height="150dip"
30 android:paddingTop="8dip"
31 android:gravity="center_vertical"
32 android:orientation="vertical">
33
34 <ImageView
35 android:id="@+id/photo"
36 android:layout_width="match_parent"
37 android:layout_height="150dip"
38 android:scaleType="centerCrop"/>
39
40 <View
41 android:id="@+id/photo_text_bar"
42 android:layout_width="wrap_content"
43 android:layout_height="42dip"
44 android:layout_alignBottom="@id/photo"
45 android:layout_alignLeft="@id/photo"
46 android:background="#7F000000"/>
47
48 <LinearLayout
49 android:layout_width="wrap_content"
50 android:layout_height="42dip"
51 android:layout_alignBottom="@id/photo"
52 android:layout_alignLeft="@id/photo"
53 android:gravity="center_vertical">
54
55 <TextView
56 android:id="@+id/name"
57 android:layout_width="wrap_content"
58 android:layout_height="wrap_content"
59 android:layout_marginLeft="8dip"
60 android:singleLine="true"
61 android:ellipsize="end"
62 android:textColor="@android:color/white"
63 android:textAppearance="?android:attr/textAppearanceMedium"/>
64
65 <ImageView
66 android:id="@+id/gplus_button"
67 android:layout_width="wrap_content"
68 android:layout_height="wrap_content"
69 android:layout_marginLeft="8dip"
70 android:scaleType="centerInside"/>
71
72 </LinearLayout>
73
74 <ImageView
75 android:id="@+id/github_button"
76 android:layout_width="wrap_content"
77 android:layout_height="wrap_content"
78 android:layout_alignBottom="@id/photo"
79 android:layout_alignParentRight="true"
80 android:paddingRight="4dip"
81 android:paddingBottom="4dp"
82 android:layout_toRightOf="@+id/gplus_button"
83 android:scaleType="centerInside" />
84
85 </RelativeLayout>
86
87</FrameLayout>