summaryrefslogtreecommitdiff
path: root/res/layout/main.xml
blob: c4d233b547331ca22b5eaf398076df9af33e0573 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"    
    android:layout_height="fill_parent">
    
    <LinearLayout android:id="@+id/linearLayout1" android:layout_width="fill_parent" android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="horizontal">
    
    	<LinearLayout android:layout_weight="1.5" android:layout_height="match_parent" android:id="@+id/linearLayout4" android:layout_width="match_parent">

            <LinearLayout android:layout_height="match_parent" android:id="@+id/feeds_container"
                            	android:layout_weight="1" 
             
            android:layout_width="match_parent">
            </LinearLayout>
			
                <ImageView
    				xmlns:android="http://schemas.android.com/apk/res/android"
    				android:background="?feedlistDivider" 
    				android:paddingLeft="2dip" android:paddingRight="2dip"
    				android:layout_width="wrap_content" android:layout_height="match_parent"></ImageView>
                
            </LinearLayout>
    	<LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="0.5" android:id="@+id/headlines_wrapper">
    		<LinearLayout android:layout_width="match_parent" android:layout_weight="1" android:id="@+id/headlines_container" android:layout_height="match_parent">
    		</LinearLayout>
    		
    		<ImageView android:paddingRight="2dip" android:layout_height="match_parent" android:background="?feedlistDivider" android:layout_width="wrap_content" android:paddingLeft="2dip"></ImageView>
    		
    		<LinearLayout android:layout_weight="1" android:visibility="gone" android:layout_width="match_parent" android:background="#f0f0ff" android:id="@+id/article_container" android:layout_height="match_parent"></LinearLayout>
    	</LinearLayout>
            
        
    </LinearLayout>
    
    
</FrameLayout>