-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Cast notification having no buttons, fix miscolored items
- Loading branch information
Steven Schoen
authored and
Steven Schoen
committed
May 22, 2016
1 parent
ce2ca73
commit bca9761
Showing
30 changed files
with
176 additions
and
147 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-991 Bytes
app/src/main/res/drawable-xxhdpi/ic_action_createfolder_black.png
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="24dp" | ||
android:height="24dp" | ||
android:viewportHeight="24.0" | ||
android:viewportWidth="24.0"> | ||
<path | ||
android:fillColor="#FF000000" | ||
android:pathData="M16,1L4,1c-1.1,0 -2,0.9 -2,2v14h2L4,3h12L16,1zM19,5L8,5c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h11c1.1,0 2,-0.9 2,-2L21,7c0,-1.1 -0.9,-2 -2,-2zM19,21L8,21L8,7h11v14z"/> | ||
</vector> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="24dp" | ||
android:height="24dp" | ||
android:viewportWidth="24.0" | ||
android:viewportHeight="24.0"> | ||
<path | ||
android:fillColor="#FF000000" | ||
android:pathData="M20,6h-8l-2,-2L4,4c-1.11,0 -1.99,0.89 -1.99,2L2,18c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2L22,8c0,-1.11 -0.89,-2 -2,-2zM19,14h-3v3h-2v-3h-3v-2h3L14,9h2v3h3v2z"/> | ||
</vector> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="24dp" | ||
android:height="24dp" | ||
android:viewportHeight="24.0" | ||
android:viewportWidth="24.0"> | ||
<path | ||
android:fillColor="#000" | ||
android:pathData="M19,6.41L17.59,5 12,10.59 6.41,5 5,6.41 10.59,12 5,17.59 6.41,19 12,13.41 17.59,19 19,17.59 13.41,12z"/> | ||
</vector> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="24dp" | ||
android:height="24dp" | ||
android:viewportHeight="24.0" | ||
android:viewportWidth="24.0"> | ||
<path | ||
android:fillColor="#FFF" | ||
android:pathData="M19,6.41L17.59,5 12,10.59 6.41,5 5,6.41 10.59,12 5,17.59 6.41,19 12,13.41 17.59,19 19,17.59 13.41,12z"/> | ||
</vector> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,45 @@ | ||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:layout_gravity="center" | ||
android:background="@android:color/white" | ||
android:clipChildren="false"> | ||
<RelativeLayout | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:app="http://schemas.android.com/apk/res-auto" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:layout_gravity="center" | ||
android:background="@android:color/white" | ||
android:clipChildren="false"> | ||
|
||
<include | ||
android:id="@+id/filepreview" | ||
layout="@layout/filepreview" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_above="@+id/holder_fileinfo" | ||
android:layout_marginBottom="@dimen/fabSizeHalfNegative" /> | ||
<include | ||
android:id="@+id/filepreview" | ||
layout="@layout/filepreview" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_above="@+id/holder_fileinfo" | ||
android:layout_marginBottom="@dimen/fabSizeHalfNegative"/> | ||
|
||
<RelativeLayout | ||
android:id="@id/holder_fileinfo" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_alignParentBottom="true" | ||
android:clipChildren="false" | ||
android:elevation="2dp"> | ||
<RelativeLayout | ||
android:id="@id/holder_fileinfo" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_alignParentBottom="true" | ||
android:clipChildren="false" | ||
android:elevation="2dp"> | ||
|
||
<include | ||
layout="@layout/fileinfo" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_marginTop="@dimen/fabSizeHalf" /> | ||
<include | ||
layout="@layout/fileinfo" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_marginTop="@dimen/fabSizeHalf"/> | ||
|
||
<include | ||
android:id="@+id/button_filedetails_play" | ||
layout="@layout/fab_play" | ||
android:layout_width="@dimen/fabSize" | ||
android:layout_height="@dimen/fabSize" | ||
android:layout_alignParentEnd="true" | ||
android:layout_alignParentRight="true" | ||
android:layout_alignParentTop="true" | ||
android:layout_marginEnd="32dp" | ||
android:layout_marginRight="32dp" /> | ||
</RelativeLayout> | ||
<android.support.design.widget.FloatingActionButton | ||
android:id="@+id/button_filedetails_play" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_alignParentEnd="true" | ||
android:layout_alignParentRight="true" | ||
android:layout_alignParentTop="true" | ||
android:layout_marginEnd="32dp" | ||
android:layout_marginRight="32dp" | ||
android:src="@drawable/mr_ic_play_light" | ||
app:elevation="2dp" | ||
app:fabSize="normal"/> | ||
</RelativeLayout> | ||
</RelativeLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1,57 @@ | ||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:background="@android:color/white" | ||
android:clipChildren="false"> | ||
<RelativeLayout | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:app="http://schemas.android.com/apk/res-auto" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:background="@android:color/white" | ||
android:clipChildren="false"> | ||
|
||
<RelativeLayout | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:layout_alignParentLeft="true" | ||
android:layout_alignParentStart="true" | ||
android:layout_marginEnd="@dimen/fabSizeHalfNegative" | ||
android:layout_marginRight="@dimen/fabSizeHalfNegative" | ||
android:layout_toLeftOf="@+id/holder_fileinfo" | ||
android:layout_toStartOf="@id/holder_fileinfo"> | ||
<RelativeLayout | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:layout_alignParentLeft="true" | ||
android:layout_alignParentStart="true" | ||
android:layout_marginEnd="@dimen/fabSizeHalfNegative" | ||
android:layout_marginRight="@dimen/fabSizeHalfNegative" | ||
android:layout_toLeftOf="@+id/holder_fileinfo" | ||
android:layout_toStartOf="@id/holder_fileinfo"> | ||
|
||
<include | ||
android:id="@+id/filepreview" | ||
layout="@layout/filepreview" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" /> | ||
</RelativeLayout> | ||
<include | ||
android:id="@+id/filepreview" | ||
layout="@layout/filepreview" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent"/> | ||
</RelativeLayout> | ||
|
||
<RelativeLayout | ||
android:id="@id/holder_fileinfo" | ||
android:layout_width="340dp" | ||
android:layout_height="match_parent" | ||
android:layout_alignParentEnd="true" | ||
android:layout_alignParentRight="true" | ||
android:clipChildren="false"> | ||
<RelativeLayout | ||
android:id="@id/holder_fileinfo" | ||
android:layout_width="340dp" | ||
android:layout_height="match_parent" | ||
android:layout_alignParentEnd="true" | ||
android:layout_alignParentRight="true" | ||
android:clipChildren="false"> | ||
|
||
<ScrollView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_marginLeft="@dimen/fabSizeHalf" | ||
android:layout_marginStart="@dimen/fabSizeHalf"> | ||
<ScrollView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_marginLeft="@dimen/fabSizeHalf" | ||
android:layout_marginStart="@dimen/fabSizeHalf"> | ||
|
||
<include | ||
layout="@layout/fileinfo" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:elevation="2dp" /> | ||
</ScrollView> | ||
<include | ||
layout="@layout/fileinfo" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:elevation="2dp"/> | ||
</ScrollView> | ||
|
||
<include | ||
android:id="@+id/button_filedetails_play" | ||
layout="@layout/fab_play" | ||
android:layout_width="@dimen/fabSize" | ||
android:layout_height="@dimen/fabSize" | ||
android:layout_alignParentBottom="true" | ||
android:layout_alignParentLeft="true" | ||
android:layout_alignParentStart="true" | ||
android:layout_marginBottom="32dp" /> | ||
</RelativeLayout> | ||
<android.support.design.widget.FloatingActionButton | ||
android:id="@+id/button_filedetails_play" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_alignParentBottom="true" | ||
android:layout_marginBottom="32dp" | ||
android:src="@drawable/mr_ic_play_light" | ||
app:elevation="2dp" | ||
app:fabSize="normal"/> | ||
</RelativeLayout> | ||
</RelativeLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:app="http://schemas.android.com/apk/res-auto" | ||
android:id="@+id/toolbar_filedetails" | ||
android:layout_width="match_parent" | ||
android:layout_height="?attr/actionBarSize" | ||
android:background="@android:color/transparent" | ||
android:minHeight="?attr/actionBarSize" | ||
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" | ||
app:contentInsetStart="0dp" | ||
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"> | ||
|
||
<ImageButton | ||
android:id="@+id/button_filedetails_close" | ||
android:layout_width="56dp" | ||
android:layout_height="match_parent" | ||
android:layout_marginEnd="4dp" | ||
android:layout_marginRight="4dp" | ||
android:adjustViewBounds="true" | ||
android:background="?attr/actionBarItemBackground" | ||
android:contentDescription="@string/close" | ||
android:padding="20dp" | ||
android:scaleType="fitCenter" | ||
android:src="@drawable/ic_filedetails_close" | ||
android:tint="@android:color/white" /> | ||
</android.support.v7.widget.Toolbar> | ||
<android.support.v7.widget.Toolbar | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:app="http://schemas.android.com/apk/res-auto" | ||
android:id="@+id/toolbar_filedetails" | ||
android:layout_width="match_parent" | ||
android:layout_height="?attr/actionBarSize" | ||
android:background="@android:color/transparent" | ||
android:minHeight="?attr/actionBarSize" | ||
app:contentInsetStart="0dp" | ||
app:navigationContentDescription="@string/close" | ||
app:navigationIcon="@drawable/ic_toolbar_nav_close_white" | ||
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" | ||
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<menu xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:app="http://schemas.android.com/apk/res-auto"> | ||
xmlns:app="http://schemas.android.com/apk/res-auto"> | ||
|
||
<item | ||
android:id="@+id/menu_search" | ||
android:hint="@string/searchyourfiles" | ||
android:orderInCategory="1" | ||
android:title="@string/search" | ||
app:actionViewClass="android.support.v7.widget.SearchView" | ||
app:showAsAction="ifRoom" /> | ||
<item | ||
android:id="@+id/menu_search" | ||
android:hint="@string/searchyourfiles" | ||
android:orderInCategory="1" | ||
android:title="@string/search" | ||
app:actionViewClass="android.support.v7.widget.SearchView" | ||
app:showAsAction="ifRoom"/> | ||
|
||
<item | ||
android:id="@+id/menu_createfolder" | ||
android:icon="@drawable/ic_action_createfolder_black" | ||
android:orderInCategory="2" | ||
android:title="@string/create_folder" | ||
app:showAsAction="never" /> | ||
<item | ||
android:id="@+id/menu_createfolder" | ||
android:icon="@drawable/ic_action_create_folder" | ||
android:orderInCategory="2" | ||
android:title="@string/create_folder" | ||
app:showAsAction="never"/> | ||
|
||
</menu> |
Oops, something went wrong.