-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
-> Implement SeekBar widget -> Fix LayerListDrawable size
- Loading branch information
1 parent
ac8d6be
commit eeba3e0
Showing
13 changed files
with
323 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<layer-list> | ||
<item height="4dp"> | ||
<selector> | ||
<item pressed="true"> | ||
<layer-list> | ||
<item> | ||
<shape | ||
type="rounded" | ||
radius="2dp" | ||
color="?colorPrimaryVariant"/> | ||
</item> | ||
</layer-list> | ||
</item> | ||
<item> | ||
<layer-list> | ||
<item> | ||
<shape | ||
type="rounded" | ||
radius="2dp" | ||
color="?colorPrimary"/> | ||
</item> | ||
</layer-list> | ||
</item> | ||
</selector> | ||
</item> | ||
</layer-list> |
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,27 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<layer-list> | ||
<item height="16dp" width="16dp"> | ||
<selector> | ||
<item pressed="true"> | ||
<layer-list> | ||
<item> | ||
<shape | ||
type="rounded" | ||
radius="64dp" | ||
color="?colorPrimaryVariant"/> | ||
</item> | ||
</layer-list> | ||
</item> | ||
<item> | ||
<layer-list> | ||
<item> | ||
<shape | ||
type="rounded" | ||
radius="64dp" | ||
color="?colorPrimary"/> | ||
</item> | ||
</layer-list> | ||
</item> | ||
</selector> | ||
</item> | ||
</layer-list> |
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 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<layer-list> | ||
<item height="4dp"> | ||
<shape | ||
type="rounded" | ||
radius="2dp" | ||
color="?colorSurfaceVariant"/> | ||
</item> | ||
</layer-list> |
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
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package br.nullexcept.mux.lang; | ||
|
||
public interface Function3<A,B,C> { | ||
void run(A a, B b, C c); | ||
} |
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
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
Oops, something went wrong.