| <?xml version="1.0" encoding="utf-8"?> |
| <!-- |
| /** |
| * Copyright (c) 2013, The Android Open Kang Project |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| --> |
| <FrameLayout |
| xmlns:android="http://schemas.android.com/apk/res/android" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:paddingLeft="15dip" |
| android:paddingRight="15dip"> |
| |
| <RelativeLayout |
| android:id="@+id/image_here" |
| android:layout_width="wrap_content" |
| android:layout_height="150dip" |
| android:paddingTop="8dip" |
| android:gravity="center_vertical" |
| android:orientation="vertical"> |
| |
| <ImageView |
| android:id="@+id/photo" |
| android:layout_width="match_parent" |
| android:layout_height="150dip" |
| android:scaleType="centerCrop"/> |
| |
| <View |
| android:id="@+id/photo_text_bar" |
| android:layout_width="wrap_content" |
| android:layout_height="42dip" |
| android:layout_alignBottom="@id/photo" |
| android:layout_alignLeft="@id/photo" |
| android:background="#7F000000"/> |
| |
| <LinearLayout |
| android:layout_width="wrap_content" |
| android:layout_height="42dip" |
| android:layout_alignBottom="@id/photo" |
| android:layout_alignLeft="@id/photo" |
| android:gravity="center_vertical"> |
| |
| <TextView |
| android:id="@+id/name" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:layout_marginLeft="8dip" |
| android:singleLine="true" |
| android:ellipsize="end" |
| android:textColor="@android:color/white" |
| android:textAppearance="?android:attr/textAppearanceMedium"/> |
| |
| <ImageView |
| android:id="@+id/gplus_button" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:layout_marginLeft="8dip" |
| android:scaleType="centerInside"/> |
| |
| </LinearLayout> |
| |
| <ImageView |
| android:id="@+id/github_button" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:layout_alignBottom="@id/photo" |
| android:layout_alignParentRight="true" |
| android:paddingRight="4dip" |
| android:paddingBottom="4dp" |
| android:layout_toRightOf="@+id/gplus_button" |
| android:scaleType="centerInside" /> |
| |
| </RelativeLayout> |
| |
| </FrameLayout> |