project_files/Android-build/SDL-android-project/res/layout/download_listactivity.xml
branchhedgeroid
changeset 6350 41b0a9955c47
child 6433 c8e4b3f29e1e
equal deleted inserted replaced
6348:162fec525764 6350:41b0a9955c47
       
     1 <?xml version="1.0" encoding="utf-8"?>
       
     2 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
       
     3     android:layout_width="match_parent"
       
     4     android:layout_height="match_parent">
       
     5     
       
     6    <include layout="@layout/background"/>
       
     7     
       
     8 	<LinearLayout 
       
     9 	    android:layout_width="match_parent"
       
    10 	    android:layout_height="match_parent"
       
    11 	    android:orientation="horizontal"
       
    12 	    android:background="@android:color/transparent">	    
       
    13 	    <fragment class="org.hedgewars.hedgeroid.Downloader.DownloadListFragment"
       
    14 	        android:id="@+id/downloadList"
       
    15 	        android:layout_width="match_parent"
       
    16 	        android:layout_height="match_parent"
       
    17 	        android:layout_weight="1"/>
       
    18 	    
       
    19 	    <FrameLayout 
       
    20 	        android:id="@+id/downloadFrameLayout"
       
    21 	        android:layout_width="match_parent"
       
    22 	        android:layout_height="match_parent"
       
    23 	        android:layout_weight="1"
       
    24 	        android:background="@android:color/transparent">
       
    25 	        
       
    26 	        <ScrollView
       
    27 	            android:layout_width="match_parent"
       
    28 	        	android:layout_height="match_parent">
       
    29 	            
       
    30 	            <LinearLayout
       
    31 	                android:id="@+id/downloadQueueContainer"
       
    32 	                android:layout_width="match_parent"
       
    33 	        		android:layout_height="match_parent"
       
    34 	        		android:orientation="vertical"/>	        		
       
    35 	        </ScrollView>
       
    36 	    </FrameLayout>
       
    37 	
       
    38 	</LinearLayout>
       
    39 </FrameLayout>