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