blob: e35588bbd6ea9e6b686d318d7e8f087bf285edcc [file] [log] [blame]
<org.sflphone.views.parallaxscrollview.ParallaxScrollView xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/scroll_view"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<!-- Background -->
<RelativeLayout
android:id="@+id/iv"
android:layout_width="match_parent"
android:layout_height="@dimen/header_history_detail" >
<ImageView
android:id="@+id/contact_photo"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_centerHorizontal="true"
android:layout_marginTop="30dp" />
<LinearLayout
android:id="@+id/contact_name_holder"
android:layout_width="0dp"
android:layout_height="50dp"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:background="#AAFFFFFF"
android:orientation="vertical"
android:padding="5dp" >
<TextView
android:id="@+id/history_call_name"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:singleLine="true"
android:textSize="18sp" />
</LinearLayout>
</RelativeLayout>
<!-- Foreground -->
<org.sflphone.views.parallaxscrollview.AnotherView
android:id="@+id/anotherView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/llMainHolder"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/header_history_detail"
android:orientation="vertical" >
<RelativeLayout
android:id="@+id/call_main_action"
android:layout_width="match_parent"
android:layout_height="?android:attr/listPreferredItemHeight"
android:background="@drawable/item_generic_selector" >
<TextView
android:id="@+id/history_entry_number"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_marginLeft="10dp"
android:singleLine="true"
android:textSize="18sp" />
</RelativeLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@drawable/divider" />
<LinearLayout
android:id="@+id/llMain"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<ListView
android:id="@+id/lvMain"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:dividerHeight="2dp"
android:drawSelectorOnTop="true" >
</ListView>
</LinearLayout>
</LinearLayout>
</org.sflphone.views.parallaxscrollview.AnotherView>
</org.sflphone.views.parallaxscrollview.ParallaxScrollView>