summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/nav_list.xml
diff options
context:
space:
mode:
authorLuis Cruz <ei06034@fe.up.pt>2017-01-03 17:08:45 +0000
committerLuis Cruz <ei06034@fe.up.pt>2017-01-03 17:08:45 +0000
commit2c69766505cde60e19660dc356af98a2d273f12b (patch)
tree2eb8a2b4306eec47d75a533b942c8e43ca00dbd8 /app/src/main/res/layout/nav_list.xml
parente7c69534ddbb0acbb587d607cd5aa724e35e585b (diff)
downloadAntennaPod-2c69766505cde60e19660dc356af98a2d273f12b.zip
android automatic refactor obsoletelayoutparam
Diffstat (limited to 'app/src/main/res/layout/nav_list.xml')
-rw-r--r--app/src/main/res/layout/nav_list.xml139
1 files changed, 66 insertions, 73 deletions
diff --git a/app/src/main/res/layout/nav_list.xml b/app/src/main/res/layout/nav_list.xml
index 9fcf9d9fc..f5e838cb5 100644
--- a/app/src/main/res/layout/nav_list.xml
+++ b/app/src/main/res/layout/nav_list.xml
@@ -1,80 +1,73 @@
-<?xml version="1.0" encoding="utf-8"?>
+<?xml version='1.0' encoding='utf-8'?>
+ <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:id="@+id/nav_layout"
+ android:layout_width="@dimen/drawer_width"
+ android:layout_height="match_parent"
+ android:layout_gravity="start"
+ android:background="?attr/nav_drawer_background"
+ android:orientation="vertical">
-<RelativeLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:id="@+id/nav_layout"
+ <LinearLayout android:id="@+id/nav_settings"
android:layout_width="@dimen/drawer_width"
- android:layout_height="match_parent"
- android:layout_gravity="start"
- android:background="?attr/nav_drawer_background"
- android:orientation="vertical">
+ android:layout_height="@dimen/listitem_iconwithtext_height"
+ android:layout_alignParentBottom="true"
+ android:background="?attr/selectableItemBackground"
+ android:contentDescription="@string/settings_label"
+ android:orientation="horizontal">
- <LinearLayout
- android:id="@+id/nav_settings"
- android:layout_width="@dimen/drawer_width"
- android:layout_height="@dimen/listitem_iconwithtext_height"
- android:layout_alignParentBottom="true"
- android:background="?attr/selectableItemBackground"
- android:contentDescription="@string/settings_label"
- android:orientation="horizontal">
+ <ImageView android:id="@+id/imgvCover"
+ android:layout_width="@dimen/thumbnail_length_navlist"
+ android:layout_height="@dimen/thumbnail_length_navlist"
+ android:layout_marginBottom="4dp"
+ android:layout_marginLeft="@dimen/listitem_icon_leftpadding"
+ android:layout_marginTop="4dp"
+ android:adjustViewBounds="true"
+ android:contentDescription="@string/cover_label"
+ android:cropToPadding="true"
+ android:padding="8dp"
+ android:scaleType="centerCrop"
+ android:src="?attr/ic_settings"
+ tools:src="@android:drawable/sym_def_app_icon"
+ tools:background="@android:color/holo_orange_dark">
+ <!--Removed ObsoleteLayoutParam: layout_alignParentLeft-->
+ <!--Removed ObsoleteLayoutParam: layout_centerVertical-->
+ </ImageView>
- <ImageView
- android:id="@+id/imgvCover"
- android:layout_width="@dimen/thumbnail_length_navlist"
- android:layout_height="@dimen/thumbnail_length_navlist"
- android:layout_alignParentLeft="true"
- android:layout_centerVertical="true"
- android:layout_marginBottom="4dp"
- android:layout_marginLeft="@dimen/listitem_icon_leftpadding"
- android:layout_marginTop="4dp"
- android:adjustViewBounds="true"
- android:contentDescription="@string/cover_label"
- android:cropToPadding="true"
- android:padding="8dp"
- android:scaleType="centerCrop"
- android:src="?attr/ic_settings"
- tools:src="@android:drawable/sym_def_app_icon"
- tools:background="@android:color/holo_orange_dark" />
+ <TextView android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center_vertical"
+ android:layout_marginLeft="16dp"
+ android:layout_weight="1"
+ android:gravity="center_vertical"
+ android:text="@string/settings_label"
+ android:textColor="?android:attr/textColorPrimary"
+ android:textSize="@dimen/text_size_navdrawer"
+ tools:background="@android:color/holo_green_light"/>
+ </LinearLayout>
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:layout_marginLeft="16dp"
- android:layout_weight="1"
- android:gravity="center_vertical"
- android:text="@string/settings_label"
- android:textColor="?android:attr/textColorPrimary"
- android:textSize="@dimen/text_size_navdrawer"
- tools:background="@android:color/holo_green_light"/>
-
- </LinearLayout>
-
- <View
- android:id="@+id/divider"
- android:layout_width="@dimen/drawer_width"
- android:layout_height="1dp"
- android:layout_centerVertical="true"
- android:layout_above="@id/nav_settings"
- android:background="?android:attr/listDivider"
- tools:background="@android:color/holo_red_dark" />
-
- <ListView
- android:id="@+id/nav_list"
- android:layout_width="@dimen/drawer_width"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:layout_above="@id/divider"
- android:layout_alignParentTop="true"
- android:choiceMode="singleChoice"
- android:clipToPadding="false"
- android:divider="@android:color/transparent"
- android:dividerHeight="0dp"
- android:paddingBottom="@dimen/list_vertical_padding"
- android:paddingTop="@dimen/list_vertical_padding"
- android:scrollbarStyle="outsideOverlay"
- tools:listitem="@layout/nav_listitem"
- tools:background="@android:color/holo_purple" />
+ <View android:id="@+id/divider"
+ android:layout_width="@dimen/drawer_width"
+ android:layout_height="1dp"
+ android:layout_centerVertical="true"
+ android:layout_above="@id/nav_settings"
+ android:background="?android:attr/listDivider"
+ tools:background="@android:color/holo_red_dark"/>
+ <ListView android:id="@+id/nav_list"
+ android:layout_width="@dimen/drawer_width"
+ android:layout_height="wrap_content"
+ android:layout_above="@id/divider"
+ android:layout_alignParentTop="true"
+ android:choiceMode="singleChoice"
+ android:clipToPadding="false"
+ android:divider="@android:color/transparent"
+ android:dividerHeight="0dp"
+ android:paddingBottom="@dimen/list_vertical_padding"
+ android:paddingTop="@dimen/list_vertical_padding"
+ android:scrollbarStyle="outsideOverlay"
+ tools:listitem="@layout/nav_listitem"
+ tools:background="@android:color/holo_purple">
+ <!--Removed ObsoleteLayoutParam: layout_weight-->
+ </ListView>
</RelativeLayout>