Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.89 KB | None | 0 0
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2.    xmlns:tools="http://schemas.android.com/tools"
  3.    android:layout_width="match_parent"
  4.    android:layout_height="match_parent" >
  5.  
  6.     <ScrollView
  7.         android:layout_width="fill_parent"
  8.         android:layout_height="fill_parent"
  9.         android:gravity="top"
  10.         android:fillViewport="true">
  11.    
  12.         <RelativeLayout
  13.             android:orientation="vertical"
  14.             android:layout_width="fill_parent"
  15.             android:layout_height="fill_parent"
  16.             android:layout_alignParentLeft="true"
  17.             android:layout_alignParentStart="true"
  18.             android:id="@+id/imageLayout"
  19.             android:weightSum="1"
  20.             android:background="#ffffffff"
  21.             android:layout_alignParentTop="true"
  22.             android:layout_alignParentRight="true"
  23.             android:layout_alignParentEnd="true">
  24.    
  25.             <view
  26.                 android:layout_width="wrap_content"
  27.                 android:layout_height="wrap_content"
  28.                 class="rdr.android.com.adapters.GalleryCustom"
  29.                 android:id="@+id/thisgallery"
  30.                 android:layout_gravity="center_horizontal"
  31.                 android:layout_alignParentRight="true"
  32.                 android:layout_alignParentEnd="true"
  33.                 android:layout_alignParentTop="true"
  34.                 android:layout_alignParentLeft="true"
  35.                 android:layout_alignParentStart="true"
  36.                 android:layout_above="@+id/imageLayout1" />
  37.    
  38.             <LinearLayout
  39.                 android:layout_width="fill_parent"
  40.                 android:id="@+id/imageLayout1"
  41.                 android:gravity="center_horizontal|center_vertical"
  42.                 android:orientation="horizontal"
  43.                 android:layout_height="wrap_content"
  44.                 android:layout_centerVertical="true"
  45.                 android:layout_alignParentLeft="true"
  46.                 android:layout_alignParentStart="true"
  47.                 android:background="#80000000">
  48.    
  49.             </LinearLayout>
  50.    
  51.             <TextView
  52.                 android:layout_width="wrap_content"
  53.                 android:layout_height="wrap_content"
  54.                 android:id="@+id/title"
  55.                 android:layout_above="@+id/imageLayout1"
  56.                 android:layout_alignParentLeft="true"
  57.                 android:layout_alignParentStart="true"
  58.                 android:textSize="20dp"
  59.                 android:layout_alignParentRight="true"
  60.                 android:layout_alignParentEnd="true"
  61.                 android:background="#80000000"
  62.                 android:textColor="#ffffffff" />
  63.    
  64.             <ProgressBar
  65.                 android:layout_width="wrap_content"
  66.                 android:layout_height="wrap_content"
  67.                 android:id="@+id/pbar"
  68.                 android:indeterminateDrawable="@drawable/ic_launcher"
  69.                 android:visibility="invisible"
  70.                 android:max="100"
  71.                 android:progress="25"
  72.                 android:indeterminate="false"
  73.                 android:layout_alignParentBottom="true"
  74.                 android:layout_centerHorizontal="true"
  75.                 android:layout_marginBottom="97dp" />
  76.    
  77.             <ImageView
  78.                 android:layout_width="fill_parent"
  79.                 android:layout_height="fill_parent"
  80.                 android:id="@+id/news_image"
  81.                 android:layout_alignParentTop="true"
  82.                 android:layout_alignParentLeft="true"
  83.                 android:layout_alignParentStart="true"
  84.                 android:layout_alignBottom="@+id/imageLayout1" />
  85.    
  86.             <com.aligungor.listinsidescroll.ExpandableHeightListView
  87.                 android:layout_width="wrap_content"
  88.                 android:layout_height="wrap_content"
  89.                 android:id="@+id/exlist"
  90.                 android:layout_below="@+id/imageLayout1"
  91.                 android:layout_centerHorizontal="true"
  92.                 android:layout_alignParentBottom="true"
  93.                 android:background="#ff8f150e" />
  94.    
  95.         </RelativeLayout>
  96.  
  97.     </ScrollView>
  98.  
  99. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement