forked from organicmaps/organicmaps-tmp
[android] Added elevation and round background for guides gallery item
This commit is contained in:
parent
b811e9481e
commit
519d63452b
6 changed files with 251 additions and 252 deletions
7
android/res/drawable/bg_rounded_card.xml
Normal file
7
android/res/drawable/bg_rounded_card.xml
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<corners android:radius="@dimen/margin_eighth" />
|
||||
<solid android:color="@color/bg_cards" />
|
||||
</shape>
|
7
android/res/drawable/bg_rounded_card_night.xml
Normal file
7
android/res/drawable/bg_rounded_card_night.xml
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<corners android:radius="@dimen/margin_eighth" />
|
||||
<solid android:color="@color/bg_cards_night" />
|
||||
</shape>
|
|
@ -1,115 +1,126 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<RelativeLayout
|
||||
<FrameLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:layout_width="@dimen/guide_gallery_item_width"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="?cardBackground"
|
||||
android:orientation="vertical"
|
||||
android:padding="@dimen/margin_half">
|
||||
android:layout_width="wrap_content"
|
||||
android:padding="@dimen/margin_eighth"
|
||||
android:clipToPadding="false">
|
||||
<RelativeLayout
|
||||
android:id="@+id/guide_content"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
<ImageView
|
||||
android:id="@+id/image"
|
||||
android:layout_width="@dimen/nav_street_left"
|
||||
android:layout_height="@dimen/nav_street_left"
|
||||
android:layout_centerVertical="true"
|
||||
app:srcCompat="?guidesPlaceholder" />
|
||||
<LinearLayout
|
||||
android:id="@+id/item_container"
|
||||
android:layout_width="@dimen/guide_gallery_item_width"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="?bgRoundedCard"
|
||||
android:elevation="@dimen/margin_eighth"
|
||||
android:orientation="vertical"
|
||||
android:padding="@dimen/margin_half"
|
||||
tools:targetApi="lollipop">
|
||||
<RelativeLayout
|
||||
android:id="@+id/guide_content"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
<ImageView
|
||||
android:id="@+id/image"
|
||||
android:layout_width="@dimen/nav_street_left"
|
||||
android:layout_height="@dimen/nav_street_left"
|
||||
android:layout_centerVertical="true"
|
||||
app:srcCompat="?guidesPlaceholder" />
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentTop="true"
|
||||
android:layout_marginStart="@dimen/margin_half"
|
||||
android:layout_toEndOf="@id/image"
|
||||
android:orientation="vertical">
|
||||
<TextView
|
||||
android:id="@+id/title"
|
||||
android:layout_width="@dimen/guide_gallery_title_width"
|
||||
android:layout_height="@dimen/guide_gallery_title_height"
|
||||
android:gravity="center_vertical"
|
||||
android:ellipsize="end"
|
||||
android:fontFamily="@string/robotoRegular"
|
||||
android:lines="2"
|
||||
android:textColor="?android:textColorPrimary"
|
||||
android:textSize="@dimen/text_size_body_2" />
|
||||
<TextView
|
||||
android:id="@+id/subtitle"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="@dimen/margin_half"
|
||||
android:ellipsize="end"
|
||||
android:lines="1"
|
||||
android:textColor="?android:textColorSecondary" />
|
||||
<include
|
||||
layout="@layout/divider_horizontal"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/divider_height"
|
||||
android:layout_marginTop="@dimen/margin_half" />
|
||||
<include
|
||||
android:id="@+id/city_content"
|
||||
layout="@layout/city_content"
|
||||
android:visibility="gone" />
|
||||
<include
|
||||
android:id="@+id/outdoor_content"
|
||||
layout="@layout/outdoor_content"
|
||||
android:visibility="gone" />
|
||||
</LinearLayout>
|
||||
</RelativeLayout>
|
||||
<RelativeLayout
|
||||
android:id="@+id/placeholder_loading"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentTop="true"
|
||||
android:layout_marginStart="@dimen/margin_half"
|
||||
android:layout_toEndOf="@id/image"
|
||||
android:orientation="vertical">
|
||||
<TextView
|
||||
android:id="@+id/title"
|
||||
android:visibility="gone">
|
||||
<ImageView
|
||||
android:id="@+id/image_placeholder"
|
||||
android:layout_width="@dimen/nav_street_left"
|
||||
android:layout_height="@dimen/nav_street_left"
|
||||
android:src="?guidesPlaceholder" />
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:fontFamily="@string/robotoRegular"
|
||||
android:lines="2"
|
||||
android:ellipsize="end"
|
||||
android:textColor="?android:textColorPrimary"
|
||||
android:textSize="@dimen/text_size_body_2"/>
|
||||
<TextView
|
||||
android:id="@+id/subtitle"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="@dimen/margin_half"
|
||||
android:ellipsize="end"
|
||||
android:lines="1"
|
||||
android:textColor="?android:textColorSecondary" />
|
||||
<include
|
||||
layout="@layout/divider_horizontal"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/divider_height"
|
||||
android:layout_marginTop="@dimen/margin_half" />
|
||||
<include
|
||||
android:id="@+id/city_content"
|
||||
layout="@layout/city_content"
|
||||
android:visibility="gone" />
|
||||
<include
|
||||
android:id="@+id/outdoor_content"
|
||||
layout="@layout/outdoor_content"
|
||||
android:visibility="gone" />
|
||||
</LinearLayout>
|
||||
</RelativeLayout>
|
||||
<RelativeLayout
|
||||
android:id="@+id/placeholder_loading"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:visibility="gone">
|
||||
<ImageView
|
||||
android:id="@+id/image_placeholder"
|
||||
android:layout_width="@dimen/nav_street_left"
|
||||
android:layout_height="@dimen/nav_street_left"
|
||||
android:src="?guidesPlaceholder" />
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_alignParentTop="true"
|
||||
android:layout_marginStart="@dimen/margin_half"
|
||||
android:layout_toEndOf="@id/image_placeholder"
|
||||
android:orientation="vertical">
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/margin_base"
|
||||
android:background="?bgRectangleView" />
|
||||
<View
|
||||
android:layout_width="@dimen/square_block_size"
|
||||
android:layout_height="@dimen/margin_base"
|
||||
android:layout_marginTop="@dimen/margin_half"
|
||||
android:background="?bgRectangleView" />
|
||||
<View
|
||||
android:layout_width="@dimen/editor_height_days"
|
||||
android:layout_height="@dimen/margin_half"
|
||||
android:layout_marginTop="@dimen/margin_half_plus_eight"
|
||||
android:background="?bgRectangleView" />
|
||||
<include
|
||||
layout="@layout/divider_horizontal"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/divider_height"
|
||||
android:layout_marginTop="@dimen/margin_half" />
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="@dimen/margin_half_double_plus"
|
||||
android:orientation="horizontal">
|
||||
android:layout_height="match_parent"
|
||||
android:layout_alignParentTop="true"
|
||||
android:layout_marginStart="@dimen/margin_half"
|
||||
android:layout_toEndOf="@id/image_placeholder"
|
||||
android:orientation="vertical">
|
||||
<View
|
||||
android:id="@+id/left_block"
|
||||
android:layout_width="@dimen/nav_next_turn_frame"
|
||||
android:layout_height="@dimen/margin_half"
|
||||
android:layout_alignParentEnd="true"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/margin_base"
|
||||
android:background="?bgRectangleView" />
|
||||
<View
|
||||
android:layout_width="@dimen/nav_next_turn_frame"
|
||||
android:layout_height="@dimen/margin_half"
|
||||
android:layout_alignParentStart="true"
|
||||
android:layout_toEndOf="@id/left_block"
|
||||
android:layout_width="@dimen/square_block_size"
|
||||
android:layout_height="@dimen/margin_base"
|
||||
android:layout_marginTop="@dimen/margin_half"
|
||||
android:background="?bgRectangleView" />
|
||||
</RelativeLayout>
|
||||
</LinearLayout>
|
||||
<View
|
||||
android:layout_width="@dimen/editor_height_days"
|
||||
android:layout_height="@dimen/margin_half"
|
||||
android:layout_marginTop="@dimen/margin_half_plus_eight"
|
||||
android:background="?bgRectangleView" />
|
||||
<include
|
||||
layout="@layout/divider_horizontal"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="@dimen/divider_height"
|
||||
android:layout_marginTop="@dimen/margin_half" />
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="@dimen/margin_half_double_plus"
|
||||
android:orientation="horizontal">
|
||||
<View
|
||||
android:id="@+id/left_block"
|
||||
android:layout_width="@dimen/nav_next_turn_frame"
|
||||
android:layout_height="@dimen/margin_half"
|
||||
android:layout_alignParentEnd="true"
|
||||
android:background="?bgRectangleView" />
|
||||
<View
|
||||
android:layout_width="@dimen/nav_next_turn_frame"
|
||||
android:layout_height="@dimen/margin_half"
|
||||
android:layout_alignParentStart="true"
|
||||
android:layout_toEndOf="@id/left_block"
|
||||
android:background="?bgRectangleView" />
|
||||
</RelativeLayout>
|
||||
</LinearLayout>
|
||||
</RelativeLayout>
|
||||
</RelativeLayout>
|
||||
</RelativeLayout>
|
||||
</FrameLayout>
|
||||
|
|
|
@ -298,5 +298,6 @@
|
|||
<dimen name="zero">0dp</dimen>
|
||||
<dimen name="welcome_btn_min_width">148dp</dimen>
|
||||
<dimen name="guide_gallery_item_width">328dp</dimen>
|
||||
|
||||
<dimen name="guide_gallery_title_width">176dp</dimen>
|
||||
<dimen name="guide_gallery_title_height">40dp</dimen>
|
||||
</resources>
|
||||
|
|
|
@ -1,168 +1,139 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<declare-styleable name="ThemeAttrs">
|
||||
<attr name="fullscreenDialogTheme" format="reference"/>
|
||||
<attr name="windowBackgroundForced" format="reference|color"/>
|
||||
|
||||
<attr name="cardFrame" format="reference"/>
|
||||
<attr name="cardBackground" format="reference"/>
|
||||
|
||||
<attr name="clickableBackground" format="reference"/>
|
||||
<attr name="statusBar" format="color"/>
|
||||
<attr name="secondary" format="color"/>
|
||||
<attr name="panel" format="color"/>
|
||||
<attr name="sidePanel" format="color"/>
|
||||
<attr name="iconTint" format="color"/>
|
||||
<attr name="iconTintDisabled" format="color"/>
|
||||
<attr name="iconTintLight" format="color"/>
|
||||
<attr name="counterTextColor" format="color"/>
|
||||
|
||||
<attr name="zoomPlus" format="reference"/>
|
||||
<attr name="zoomMinus" format="reference"/>
|
||||
|
||||
<attr name="ppBackground" format="color"/>
|
||||
<attr name="ppButtonsBackground" format="color"/>
|
||||
<attr name="ppPreviewHeadOpen" format="reference"/>
|
||||
<attr name="ppPreviewHeadClosed" format="reference"/>
|
||||
<attr name="ppRatingBackground" format="color"/>
|
||||
<attr name="ppRatingText" format="color"/>
|
||||
<attr name="ppPositive" format="reference"/>
|
||||
<attr name="ppNegative" format="reference"/>
|
||||
|
||||
<attr name="navNextTurnFrame" format="reference"/>
|
||||
<attr name="navNextNextTurnFrame" format="reference"/>
|
||||
|
||||
<attr name="buttonBackground" format="reference"/>
|
||||
<attr name="buttonTextColor" format="color"/>
|
||||
<attr name="buttonTextColorDisabled" format="color"/>
|
||||
<attr name="buttonDialogTextColor" format="color"/>
|
||||
|
||||
<attr name="accentButtonBackground" format="reference"/>
|
||||
<attr name="accentButtonRoundBackground" format="reference"/>
|
||||
<attr name="accentButtonTextColor" format="color"/>
|
||||
<attr name="accentButtonTextColorDisabled" format="color"/>
|
||||
<attr name="ghostButtonBackground" format="reference"/>
|
||||
<attr name="ghostButtonTextColor" format="color"/>
|
||||
<attr name="facebookButtonBackground" format="reference"/>
|
||||
|
||||
<attr name="redButtonBackground" format="reference"/>
|
||||
<attr name="redButtonTextColor" format="color"/>
|
||||
<attr name="redButtonTextColorDisabled" format="color"/>
|
||||
|
||||
<attr name="primaryButtonBackground" format="reference"/>
|
||||
|
||||
<attr name="circleAccent" format="reference"/>
|
||||
|
||||
<attr name="menuBackground" format="color"/>
|
||||
<attr name="menuBackgroundOpen" format="color"/>
|
||||
|
||||
<attr name="myPositionButtonAnimation" format="reference"/>
|
||||
<attr name="wheelPendingAnimation" format="reference"/>
|
||||
<attr name="trafficLoadingAnimation" format="reference"/>
|
||||
|
||||
<attr name="navButtonsTheme" format="reference"/>
|
||||
<attr name="downloaderTheme" format="reference"/>
|
||||
<attr name="navigationTheme" format="reference"/>
|
||||
|
||||
<attr name="fabAdd" format="reference"/>
|
||||
<attr name="fabViewOnMap" format="reference"/>
|
||||
|
||||
<attr name="routingButtonHint" format="color"/>
|
||||
<attr name="routingButtonPressedHint" format="color"/>
|
||||
<attr name="routingButtonActivatedHint" format="color"/>
|
||||
|
||||
<attr name="bannerText" format="color"/>
|
||||
<attr name="bannerBackground" format="reference"/>
|
||||
<attr name="bannerButtonBackground" format="reference"/>
|
||||
<attr name="bannerButtonBackgroundColor" format="color"/>
|
||||
<attr name="bannerRemoveButtonBackground" format="reference"/>
|
||||
<attr name="adsBackground" format="reference"/>
|
||||
<attr name="adsText" format="color"/>
|
||||
<attr name="adsActionBackground" format="reference"/>
|
||||
<attr name="textBannerTitle" format="color"/>
|
||||
|
||||
<attr name="steadyIconTint" format="color"/>
|
||||
<attr name="steadyIconBackground" format="reference"/>
|
||||
<attr name="activeIconTint" format="color"/>
|
||||
<attr name="activeIconBackground" format="reference"/>
|
||||
|
||||
<attr name="warmGray" format="color"/>
|
||||
|
||||
<attr name="localAdSearchResBackground" format="color"/>
|
||||
|
||||
<attr name="tagBackground" format="reference"/>
|
||||
|
||||
<attr name="sponsoredGalleryMore" format="reference"/>
|
||||
|
||||
<attr name="luggageLogo" format="reference"/>
|
||||
|
||||
<attr name="drivingOptionsViewBg" format="color"/>
|
||||
|
||||
<attr name="ratingButtonBackground" format="reference"/>
|
||||
<attr name="reviewButtonBackground" format="reference"/>
|
||||
<attr name="transitPedestrianBackground" format="color"/>
|
||||
<attr name="colorBtnHighlight" format="color"/>
|
||||
<attr name="transitStepDivider" format="reference"/>
|
||||
<attr name="filterPropertyBackground" format="reference"/>
|
||||
<attr name="adChoicesIcon" format="reference"/>
|
||||
<attr name="saleIcon" format="reference"/>
|
||||
<attr name="toggleMapLayerBtnBg" format="reference"/>
|
||||
<attr name="tipsBgColor" format="color"/>
|
||||
<attr name="tipsPrimaryTextColor" format="color"/>
|
||||
<attr name="tipsSecondaryTextColor" format="color"/>
|
||||
<attr name="bgCrown" format="reference"/>
|
||||
<attr name="bgDogBtn" format="reference"/>
|
||||
<attr name="guidesTime" format="reference"></attr>
|
||||
<attr name="guidesAltitude" format="reference"></attr>
|
||||
<attr name="guidesSight" format="reference"></attr>
|
||||
<attr name="guidesPlaceholder" format="reference"></attr>
|
||||
<attr name="guidesDistance" format="reference"></attr>
|
||||
<attr name="bgRectangleView" format="reference"></attr>
|
||||
<attr name="fullscreenDialogTheme" format="reference" />
|
||||
<attr name="windowBackgroundForced" format="reference|color" />
|
||||
<attr name="cardFrame" format="reference" />
|
||||
<attr name="cardBackground" format="reference" />
|
||||
<attr name="clickableBackground" format="reference" />
|
||||
<attr name="statusBar" format="color" />
|
||||
<attr name="secondary" format="color" />
|
||||
<attr name="panel" format="color" />
|
||||
<attr name="sidePanel" format="color" />
|
||||
<attr name="iconTint" format="color" />
|
||||
<attr name="iconTintDisabled" format="color" />
|
||||
<attr name="iconTintLight" format="color" />
|
||||
<attr name="counterTextColor" format="color" />
|
||||
<attr name="zoomPlus" format="reference" />
|
||||
<attr name="zoomMinus" format="reference" />
|
||||
<attr name="ppBackground" format="color" />
|
||||
<attr name="ppButtonsBackground" format="color" />
|
||||
<attr name="ppPreviewHeadOpen" format="reference" />
|
||||
<attr name="ppPreviewHeadClosed" format="reference" />
|
||||
<attr name="ppRatingBackground" format="color" />
|
||||
<attr name="ppRatingText" format="color" />
|
||||
<attr name="ppPositive" format="reference" />
|
||||
<attr name="ppNegative" format="reference" />
|
||||
<attr name="navNextTurnFrame" format="reference" />
|
||||
<attr name="navNextNextTurnFrame" format="reference" />
|
||||
<attr name="buttonBackground" format="reference" />
|
||||
<attr name="buttonTextColor" format="color" />
|
||||
<attr name="buttonTextColorDisabled" format="color" />
|
||||
<attr name="buttonDialogTextColor" format="color" />
|
||||
<attr name="accentButtonBackground" format="reference" />
|
||||
<attr name="accentButtonRoundBackground" format="reference" />
|
||||
<attr name="accentButtonTextColor" format="color" />
|
||||
<attr name="accentButtonTextColorDisabled" format="color" />
|
||||
<attr name="ghostButtonBackground" format="reference" />
|
||||
<attr name="ghostButtonTextColor" format="color" />
|
||||
<attr name="facebookButtonBackground" format="reference" />
|
||||
<attr name="redButtonBackground" format="reference" />
|
||||
<attr name="redButtonTextColor" format="color" />
|
||||
<attr name="redButtonTextColorDisabled" format="color" />
|
||||
<attr name="primaryButtonBackground" format="reference" />
|
||||
<attr name="circleAccent" format="reference" />
|
||||
<attr name="menuBackground" format="color" />
|
||||
<attr name="menuBackgroundOpen" format="color" />
|
||||
<attr name="myPositionButtonAnimation" format="reference" />
|
||||
<attr name="wheelPendingAnimation" format="reference" />
|
||||
<attr name="trafficLoadingAnimation" format="reference" />
|
||||
<attr name="navButtonsTheme" format="reference" />
|
||||
<attr name="downloaderTheme" format="reference" />
|
||||
<attr name="navigationTheme" format="reference" />
|
||||
<attr name="fabAdd" format="reference" />
|
||||
<attr name="fabViewOnMap" format="reference" />
|
||||
<attr name="routingButtonHint" format="color" />
|
||||
<attr name="routingButtonPressedHint" format="color" />
|
||||
<attr name="routingButtonActivatedHint" format="color" />
|
||||
<attr name="bannerText" format="color" />
|
||||
<attr name="bannerBackground" format="reference" />
|
||||
<attr name="bannerButtonBackground" format="reference" />
|
||||
<attr name="bannerButtonBackgroundColor" format="color" />
|
||||
<attr name="bannerRemoveButtonBackground" format="reference" />
|
||||
<attr name="adsBackground" format="reference" />
|
||||
<attr name="adsText" format="color" />
|
||||
<attr name="adsActionBackground" format="reference" />
|
||||
<attr name="textBannerTitle" format="color" />
|
||||
<attr name="steadyIconTint" format="color" />
|
||||
<attr name="steadyIconBackground" format="reference" />
|
||||
<attr name="activeIconTint" format="color" />
|
||||
<attr name="activeIconBackground" format="reference" />
|
||||
<attr name="warmGray" format="color" />
|
||||
<attr name="localAdSearchResBackground" format="color" />
|
||||
<attr name="tagBackground" format="reference" />
|
||||
<attr name="sponsoredGalleryMore" format="reference" />
|
||||
<attr name="luggageLogo" format="reference" />
|
||||
<attr name="drivingOptionsViewBg" format="color" />
|
||||
<attr name="ratingButtonBackground" format="reference" />
|
||||
<attr name="reviewButtonBackground" format="reference" />
|
||||
<attr name="transitPedestrianBackground" format="color" />
|
||||
<attr name="colorBtnHighlight" format="color" />
|
||||
<attr name="transitStepDivider" format="reference" />
|
||||
<attr name="filterPropertyBackground" format="reference" />
|
||||
<attr name="adChoicesIcon" format="reference" />
|
||||
<attr name="saleIcon" format="reference" />
|
||||
<attr name="toggleMapLayerBtnBg" format="reference" />
|
||||
<attr name="tipsBgColor" format="color" />
|
||||
<attr name="tipsPrimaryTextColor" format="color" />
|
||||
<attr name="tipsSecondaryTextColor" format="color" />
|
||||
<attr name="bgCrown" format="reference" />
|
||||
<attr name="bgDogBtn" format="reference" />
|
||||
<attr name="guidesTime" format="reference" />
|
||||
<attr name="guidesAltitude" format="reference" />
|
||||
<attr name="guidesSight" format="reference" />
|
||||
<attr name="guidesPlaceholder" format="reference" />
|
||||
<attr name="guidesDistance" format="reference" />
|
||||
<attr name="bgRectangleView" format="reference" />
|
||||
<attr name="bgRoundedCard" format="reference" />
|
||||
</declare-styleable>
|
||||
|
||||
<declare-styleable name="ThemeAttrs.NavButtons">
|
||||
<attr name="nav_background" format="reference"/>
|
||||
<attr name="nav_bg_subway" format="reference"/>
|
||||
<attr name="nav_bg_isolines" format="reference"/>
|
||||
<attr name="nav_background" format="reference" />
|
||||
<attr name="nav_bg_subway" format="reference" />
|
||||
<attr name="nav_bg_isolines" format="reference" />
|
||||
</declare-styleable>
|
||||
|
||||
<declare-styleable name="ThemeAttrs.Downloader">
|
||||
<attr name="status_done" format="reference"/>
|
||||
<attr name="status_downloadable" format="reference"/>
|
||||
<attr name="status_failed" format="reference"/>
|
||||
<attr name="status_updatable" format="reference"/>
|
||||
<attr name="status_folder" format="reference"/>
|
||||
<attr name="status_folder_done" format="reference"/>
|
||||
<attr name="status_done" format="reference" />
|
||||
<attr name="status_downloadable" format="reference" />
|
||||
<attr name="status_failed" format="reference" />
|
||||
<attr name="status_updatable" format="reference" />
|
||||
<attr name="status_folder" format="reference" />
|
||||
<attr name="status_folder_done" format="reference" />
|
||||
</declare-styleable>
|
||||
|
||||
<declare-styleable name="ThemeAttrs.Navigation">
|
||||
<attr name="newsMarker" format="reference"/>
|
||||
<attr name="searchLayoutBackground" format="reference"/>
|
||||
<attr name="newsMarker" format="reference" />
|
||||
<attr name="searchLayoutBackground" format="reference" />
|
||||
</declare-styleable>
|
||||
|
||||
<declare-styleable name="ThemeAttrs.BookmarksSubscription">
|
||||
<attr name="subscriptionTitleColor" format="color"/>
|
||||
<attr name="subscriptionSubtitleColor" format="color"/>
|
||||
<attr name="subscriptionTitleColor" format="color" />
|
||||
<attr name="subscriptionSubtitleColor" format="color" />
|
||||
</declare-styleable>
|
||||
|
||||
<declare-styleable name="ThemeAttrs.ElevationProfile">
|
||||
<attr name="elevationProfileColor" format="color"/>
|
||||
<attr name="elevationProfileColor" format="color" />
|
||||
<attr name="elevationProfilePropertyBg" format="reference" />
|
||||
<attr name="elevationProfilePropIconTint" format="color" />
|
||||
<attr name="altitudeBg" format="reference"/>
|
||||
<attr name="elevationProfileAxisLabelColor" format="color"/>
|
||||
<attr name="elevationProfileYourLocationPinBg" format="reference"/>
|
||||
<attr name="elevationProfileSelectedPointBg" format="reference"/>
|
||||
<attr name="elevationProfileSelectedPointTriangle" format="reference"/>
|
||||
<attr name="elevationProfileFloatingTriangle" format="reference"/>
|
||||
<attr name="altitudeBg" format="reference" />
|
||||
<attr name="elevationProfileAxisLabelColor" format="color" />
|
||||
<attr name="elevationProfileYourLocationPinBg" format="reference" />
|
||||
<attr name="elevationProfileSelectedPointBg" format="reference" />
|
||||
<attr name="elevationProfileSelectedPointTriangle" format="reference" />
|
||||
<attr name="elevationProfileFloatingTriangle" format="reference" />
|
||||
</declare-styleable>
|
||||
|
||||
<declare-styleable name="ThemeAttrs.Fonts">
|
||||
<attr name="fontHeadline1" format="reference"/>
|
||||
<attr name="fontHeadline2" format="reference"/>
|
||||
<attr name="fontHeadline3" format="reference"/>
|
||||
<attr name="fontHeadline4" format="reference"/>
|
||||
<attr name="fontHeadline5" format="reference"/>
|
||||
<attr name="fontHeadline6" format="reference"/>
|
||||
<attr name="fontHeadline1" format="reference" />
|
||||
<attr name="fontHeadline2" format="reference" />
|
||||
<attr name="fontHeadline3" format="reference" />
|
||||
<attr name="fontHeadline4" format="reference" />
|
||||
<attr name="fontHeadline5" format="reference" />
|
||||
<attr name="fontHeadline6" format="reference" />
|
||||
</declare-styleable>
|
||||
</resources>
|
||||
|
|
|
@ -183,6 +183,7 @@
|
|||
<item name="guidesPlaceholder">@drawable/place_holder</item>
|
||||
<item name="guidesDistance">@drawable/dist</item>
|
||||
<item name="bgRectangleView">@drawable/bg_grey</item>
|
||||
<item name="bgRoundedCard">@drawable/bg_rounded_card</item>
|
||||
</style>
|
||||
|
||||
<!-- Night theme -->
|
||||
|
@ -365,5 +366,6 @@
|
|||
<item name="guidesPlaceholder">@drawable/place_holder_dark</item>
|
||||
<item name="guidesDistance">@drawable/dist_dark</item>
|
||||
<item name="bgRectangleView">@drawable/bg_grey_dark</item>
|
||||
<item name="bgRoundedCard">@drawable/bg_rounded_card_night</item>
|
||||
</style>
|
||||
</resources>
|
||||
|
|
Loading…
Add table
Reference in a new issue