mirror of
				https://github.com/viq/NewsBlur.git
				synced 2025-11-01 09:09:16 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			67 lines
		
	
	
		
			No EOL
		
	
	
		
			2.4 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			No EOL
		
	
	
		
			2.4 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
<?xml version="1.0" encoding="utf-8"?>
 | 
						|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 | 
						|
    android:layout_width="match_parent"
 | 
						|
    android:layout_height="match_parent"
 | 
						|
    android:background="@drawable/selector_feed_background"
 | 
						|
    android:orientation="vertical"
 | 
						|
    android:paddingBottom="10dp"
 | 
						|
    android:paddingTop="10dp" >
 | 
						|
 | 
						|
    <LinearLayout
 | 
						|
        android:id="@+id/row_feedcounters"
 | 
						|
        android:layout_width="wrap_content"
 | 
						|
        android:layout_height="wrap_content"
 | 
						|
        android:layout_alignParentRight="true"
 | 
						|
        android:layout_centerVertical="true"
 | 
						|
        android:layout_marginRight="5dp"
 | 
						|
        android:gravity="right"
 | 
						|
        android:orientation="horizontal" >
 | 
						|
 | 
						|
        <TextView
 | 
						|
            android:id="@+id/row_feedneutral"
 | 
						|
            android:layout_width="wrap_content"
 | 
						|
            android:layout_height="wrap_content"
 | 
						|
            android:layout_marginRight="5dp"
 | 
						|
            android:background="@drawable/neutral_count_rect"
 | 
						|
            android:gravity="center"
 | 
						|
            android:textColor="@color/white"
 | 
						|
            android:textSize="14sp"
 | 
						|
            android:padding="5dp"
 | 
						|
            android:textStyle="bold" />
 | 
						|
 | 
						|
        <TextView
 | 
						|
            android:id="@+id/row_feedpositive"
 | 
						|
            android:layout_width="wrap_content"
 | 
						|
            android:layout_height="wrap_content"
 | 
						|
            android:layout_marginRight="5dp"
 | 
						|
            android:background="@drawable/positive_count_rect"
 | 
						|
            android:gravity="center"
 | 
						|
            android:textColor="@color/white"
 | 
						|
            android:textSize="14sp"
 | 
						|
            android:padding="4dp"
 | 
						|
            android:textStyle="bold" />
 | 
						|
    </LinearLayout>
 | 
						|
 | 
						|
    <ImageView
 | 
						|
        android:id="@+id/row_feedfavicon"
 | 
						|
        android:layout_width="18dp"
 | 
						|
        android:layout_height="18dp"
 | 
						|
        android:layout_centerVertical="true"
 | 
						|
        android:layout_marginLeft="18dp"
 | 
						|
        android:contentDescription="@string/description_favicon" />
 | 
						|
 | 
						|
    <TextView
 | 
						|
        android:id="@+id/row_feedname"
 | 
						|
        android:layout_width="fill_parent"
 | 
						|
        android:layout_height="wrap_content"
 | 
						|
        android:layout_centerVertical="true"
 | 
						|
        android:layout_marginLeft="15dp"
 | 
						|
        android:layout_marginRight="5dp"
 | 
						|
        android:layout_toLeftOf="@id/row_feedcounters"
 | 
						|
        android:layout_toRightOf="@id/row_feedfavicon"
 | 
						|
        android:ellipsize="end"
 | 
						|
        android:singleLine="true"
 | 
						|
        android:textColor="@color/black"
 | 
						|
        android:textSize="16dp" />
 | 
						|
 | 
						|
</RelativeLayout> |