Fix lint. Remove unused/dupe resources.
|
@ -3,4 +3,5 @@
|
|||
<issue id="StringFormatMatches" severity="ignore" />
|
||||
<issue id="RtlHardcoded" severity="ignore" />
|
||||
<issue id="RtlSymmetry" severity="ignore" />
|
||||
<issue id="IconLocation" severity="ignore" />
|
||||
</lint>
|
||||
|
|
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 999 B |
Before Width: | Height: | Size: 545 B |
Before Width: | Height: | Size: 820 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 583 B |
Before Width: | Height: | Size: 370 B |
Before Width: | Height: | Size: 1,006 B |
Before Width: | Height: | Size: 471 B |
Before Width: | Height: | Size: 933 B |
Before Width: | Height: | Size: 927 B |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 750 B |
Before Width: | Height: | Size: 696 B |
Before Width: | Height: | Size: 50 KiB |
Before Width: | Height: | Size: 50 KiB |
Before Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 3.4 KiB |
0
clients/android/NewsBlur/res/drawable-xhdpi/classify_negative.png → clients/android/NewsBlur/res/drawable/classify_negative.png
Normal file → Executable file
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
0
clients/android/NewsBlur/res/drawable-xhdpi/classify_positive.png → clients/android/NewsBlur/res/drawable/classify_positive.png
Normal file → Executable file
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
BIN
clients/android/NewsBlur/res/drawable/clock.png
Normal file → Executable file
Before Width: | Height: | Size: 605 B After Width: | Height: | Size: 1.3 KiB |
0
clients/android/NewsBlur/res/drawable-xhdpi/fullscreen.png → clients/android/NewsBlur/res/drawable/fullscreen.png
Normal file → Executable file
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
0
clients/android/NewsBlur/res/drawable-hdpi/markread.png → clients/android/NewsBlur/res/drawable/markread.png
Normal file → Executable file
Before Width: | Height: | Size: 750 B After Width: | Height: | Size: 750 B |
BIN
clients/android/NewsBlur/res/drawable/share_icon.png
Normal file → Executable file
Before Width: | Height: | Size: 517 B After Width: | Height: | Size: 820 B |
BIN
clients/android/NewsBlur/res/drawable/tag_negative_already.png
Executable file
After Width: | Height: | Size: 959 B |
BIN
clients/android/NewsBlur/res/drawable/tag_positive_already.png
Executable file
After Width: | Height: | Size: 985 B |
|
@ -1,115 +1,108 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
style="?selectorStoryBackground"
|
||||
android:orientation="horizontal" >
|
||||
style="?selectorStoryBackground" >
|
||||
|
||||
<View
|
||||
android:id="@+id/row_item_favicon_borderbar_1"
|
||||
android:layout_width="6dp"
|
||||
android:layout_height="match_parent" />
|
||||
|
||||
<View
|
||||
android:id="@+id/row_item_favicon_borderbar_2"
|
||||
android:layout_width="6dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_toRightOf="@id/row_item_favicon_borderbar_1" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/row_item_feedicon"
|
||||
android:layout_width="18dp"
|
||||
android:layout_height="18dp"
|
||||
android:layout_marginTop="6dp"
|
||||
android:layout_marginLeft="22dp"
|
||||
android:layout_toRightOf="@id/row_item_favicon_borderbar_2" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/row_item_feedtitle"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="6dp"
|
||||
android:layout_marginTop="5dp"
|
||||
android:layout_toRightOf="@id/row_item_feedicon"
|
||||
android:ellipsize="end"
|
||||
android:singleLine="true"
|
||||
android:textColor="@color/lightgray"
|
||||
android:textSize="14dp" />
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="match_parent" >
|
||||
android:id="@+id/row_item_title_container"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_toRightOf="@id/row_item_favicon_borderbar_2"
|
||||
android:layout_marginTop="4dp"
|
||||
android:layout_below="@id/row_item_feedicon">
|
||||
|
||||
<View
|
||||
android:id="@+id/row_item_favicon_borderbar_1"
|
||||
android:layout_width="6dp"
|
||||
android:layout_height="match_parent" />
|
||||
|
||||
<View
|
||||
android:id="@+id/row_item_favicon_borderbar_2"
|
||||
android:layout_width="6dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_toRightOf="@id/row_item_favicon_borderbar_1" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/row_item_feedicon"
|
||||
android:layout_width="18dp"
|
||||
android:layout_height="18dp"
|
||||
android:layout_marginTop="6dp"
|
||||
android:layout_marginLeft="22dp"
|
||||
android:layout_toRightOf="@id/row_item_favicon_borderbar_2" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/row_item_feedtitle"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="6dp"
|
||||
android:layout_marginTop="5dp"
|
||||
android:layout_toRightOf="@id/row_item_feedicon"
|
||||
android:ellipsize="end"
|
||||
android:singleLine="true"
|
||||
android:textColor="@color/lightgray"
|
||||
android:textSize="14dp" />
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/row_item_title_container"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_toRightOf="@id/row_item_favicon_borderbar_2"
|
||||
android:layout_marginTop="4dp"
|
||||
android:layout_below="@id/row_item_feedicon">
|
||||
|
||||
|
||||
<TextView
|
||||
android:id="@+id/row_item_sidebar"
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:layout_marginLeft="7dp"
|
||||
android:layout_marginRight="7dp"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_alignParentLeft="true"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/row_item_title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_toRightOf="@+id/row_item_sidebar"
|
||||
android:layout_marginRight="8dp"
|
||||
android:paddingTop="4dp"
|
||||
android:paddingBottom="4dp"
|
||||
android:maxLines="2"
|
||||
android:ellipsize="end"
|
||||
android:textSize="14sp"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/row_item_content"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_toRightOf="@+id/row_item_sidebar"
|
||||
android:layout_below="@+id/row_item_title"
|
||||
android:layout_marginRight="8dp"
|
||||
android:paddingTop="0dp"
|
||||
android:paddingBottom="4dp"
|
||||
android:maxLines="2"
|
||||
android:ellipsize="end"
|
||||
android:textSize="14sp"/>
|
||||
|
||||
</RelativeLayout>
|
||||
android:id="@+id/row_item_sidebar"
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:layout_marginLeft="7dp"
|
||||
android:layout_marginRight="7dp"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_alignParentLeft="true"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/row_item_date"
|
||||
android:id="@+id/row_item_title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_below="@+id/row_item_title_container"
|
||||
android:layout_marginRight="12dp"
|
||||
android:layout_toRightOf="@+id/row_item_sidebar"
|
||||
android:layout_marginRight="8dp"
|
||||
android:paddingTop="4dp"
|
||||
android:paddingBottom="4dp"
|
||||
android:textColor="@color/darkgray"
|
||||
android:textSize="11dp" />
|
||||
android:maxLines="2"
|
||||
android:ellipsize="end"
|
||||
android:textSize="14sp"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/row_item_author"
|
||||
android:id="@+id/row_item_content"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/row_item_title_container"
|
||||
android:layout_toRightOf="@+id/row_item_sidebar"
|
||||
android:layout_below="@+id/row_item_title"
|
||||
android:layout_marginRight="8dp"
|
||||
android:paddingTop="0dp"
|
||||
android:paddingBottom="4dp"
|
||||
android:layout_toLeftOf="@id/row_item_date"
|
||||
android:layout_toRightOf="@id/row_item_favicon_borderbar_2"
|
||||
android:layout_marginLeft="22dp"
|
||||
android:maxLines="2"
|
||||
android:ellipsize="end"
|
||||
android:singleLine="true"
|
||||
android:textColor="@color/darkgray"
|
||||
android:textSize="11dp" />
|
||||
android:textSize="14sp"/>
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
</LinearLayout>
|
||||
<TextView
|
||||
android:id="@+id/row_item_date"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_below="@+id/row_item_title_container"
|
||||
android:layout_marginRight="12dp"
|
||||
android:paddingBottom="4dp"
|
||||
android:textColor="@color/darkgray"
|
||||
android:textSize="11dp" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/row_item_author"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/row_item_title_container"
|
||||
android:paddingBottom="4dp"
|
||||
android:layout_toLeftOf="@id/row_item_date"
|
||||
android:layout_toRightOf="@id/row_item_favicon_borderbar_2"
|
||||
android:layout_marginLeft="22dp"
|
||||
android:ellipsize="end"
|
||||
android:singleLine="true"
|
||||
android:textColor="@color/darkgray"
|
||||
android:textSize="11dp" />
|
||||
</RelativeLayout>
|
||||
|
|
|
@ -1,93 +1,87 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
style="?selectorStoryBackground"
|
||||
android:orientation="horizontal" >
|
||||
style="?selectorStoryBackground" >
|
||||
|
||||
<View
|
||||
android:id="@+id/row_item_favicon_borderbar_1"
|
||||
android:layout_width="6dp"
|
||||
android:layout_height="match_parent" />
|
||||
|
||||
<View
|
||||
android:id="@+id/row_item_favicon_borderbar_2"
|
||||
android:layout_width="6dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_toRightOf="@id/row_item_favicon_borderbar_1" />
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<View
|
||||
android:id="@+id/row_item_favicon_borderbar_1"
|
||||
android:layout_width="6dp"
|
||||
android:layout_height="match_parent" />
|
||||
|
||||
<View
|
||||
android:id="@+id/row_item_favicon_borderbar_2"
|
||||
android:layout_width="6dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_toRightOf="@id/row_item_favicon_borderbar_1" />
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/row_item_title_container"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_toRightOf="@id/row_item_favicon_borderbar_2"
|
||||
android:layout_marginTop="4dp">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/row_item_sidebar"
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginLeft="7dp"
|
||||
android:layout_marginRight="7dp"
|
||||
android:layout_centerVertical="true"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/row_item_title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginRight="8dp"
|
||||
android:layout_toRightOf="@id/row_item_sidebar"
|
||||
android:maxLines="2"
|
||||
android:ellipsize="end"
|
||||
android:gravity="left"
|
||||
android:paddingBottom="4dp"
|
||||
android:paddingTop="4dp"
|
||||
android:textSize="14sp"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/row_item_content"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginRight="12dp"
|
||||
android:layout_toRightOf="@id/row_item_sidebar"
|
||||
android:layout_below="@+id/row_item_title"
|
||||
android:maxLines="2"
|
||||
android:ellipsize="end"
|
||||
android:gravity="left"
|
||||
android:paddingBottom="4dp"
|
||||
android:paddingTop="0dp"
|
||||
android:textSize="14sp"/>
|
||||
|
||||
</RelativeLayout>
|
||||
android:id="@+id/row_item_title_container"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_toRightOf="@id/row_item_favicon_borderbar_2"
|
||||
android:layout_marginTop="4dp">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/row_item_date"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_below="@id/row_item_title_container"
|
||||
android:layout_marginRight="12dp"
|
||||
android:paddingBottom="4dp"
|
||||
android:textColor="@color/darkgray"
|
||||
android:textSize="11dp" />
|
||||
android:id="@+id/row_item_sidebar"
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginLeft="7dp"
|
||||
android:layout_marginRight="7dp"
|
||||
android:layout_centerVertical="true"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/row_item_author"
|
||||
android:id="@+id/row_item_title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@id/row_item_title_container"
|
||||
android:paddingBottom="4dp"
|
||||
android:layout_marginLeft="24dp"
|
||||
android:layout_toLeftOf="@id/row_item_date"
|
||||
android:layout_alignLeft="@id/row_item_title_container"
|
||||
android:layout_marginRight="8dp"
|
||||
android:layout_toRightOf="@id/row_item_sidebar"
|
||||
android:maxLines="2"
|
||||
android:ellipsize="end"
|
||||
android:singleLine="true"
|
||||
android:textColor="@color/darkgray"
|
||||
android:textSize="11dp" />
|
||||
android:gravity="left"
|
||||
android:paddingBottom="4dp"
|
||||
android:paddingTop="4dp"
|
||||
android:textSize="14sp"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/row_item_content"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginRight="12dp"
|
||||
android:layout_toRightOf="@id/row_item_sidebar"
|
||||
android:layout_below="@+id/row_item_title"
|
||||
android:maxLines="2"
|
||||
android:ellipsize="end"
|
||||
android:gravity="left"
|
||||
android:paddingBottom="4dp"
|
||||
android:paddingTop="0dp"
|
||||
android:textSize="14sp"/>
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
</LinearLayout>
|
||||
<TextView
|
||||
android:id="@+id/row_item_date"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_below="@id/row_item_title_container"
|
||||
android:layout_marginRight="12dp"
|
||||
android:paddingBottom="4dp"
|
||||
android:textColor="@color/darkgray"
|
||||
android:textSize="11dp" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/row_item_author"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@id/row_item_title_container"
|
||||
android:paddingBottom="4dp"
|
||||
android:layout_marginLeft="24dp"
|
||||
android:layout_toLeftOf="@id/row_item_date"
|
||||
android:layout_alignLeft="@id/row_item_title_container"
|
||||
android:ellipsize="end"
|
||||
android:singleLine="true"
|
||||
android:textColor="@color/darkgray"
|
||||
android:textSize="11dp" />
|
||||
|
||||
</RelativeLayout>
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
|
||||
<item android:id="@+id/menu_refresh"
|
||||
android:icon="@drawable/barbutton_refresh"
|
||||
android:title="@string/menu_refresh"
|
||||
android:showAsAction="never" />
|
||||
|
||||
|
@ -11,7 +10,6 @@
|
|||
android:showAsAction="never" />
|
||||
|
||||
<item android:id="@+id/menu_add_feed"
|
||||
android:icon="@drawable/plus"
|
||||
android:title="@string/menu_add_feed"
|
||||
android:showAsAction="never" />
|
||||
|
||||
|
|
|
@ -9,12 +9,10 @@
|
|||
android:visible="false"/>
|
||||
<item
|
||||
android:id="@+id/menu_reading_sharenewsblur"
|
||||
android:icon="@drawable/newsblur_share"
|
||||
android:showAsAction="never"
|
||||
android:title="@string/menu_sharenewsblur"/>
|
||||
<item
|
||||
android:id="@+id/menu_reading_original"
|
||||
android:icon="@drawable/website"
|
||||
android:showAsAction="never"
|
||||
android:title="@string/menu_original"/>
|
||||
<item
|
||||
|
|