-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from SlaVcE14/dev
1.4 release
- Loading branch information
Showing
69 changed files
with
2,816 additions
and
402 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,15 @@ | ||
![repo preview](https://repository-images.githubusercontent.com/507594462/8b9d54af-1231-43e3-a84a-5d19da2e5e38) | ||
# JsonList | ||
Android app for previewing JSON files in list form | ||
Introducing a Material You Android application for previewing JSON files in a user-friendly list format. | ||
|
||
![JsonList](images/jsonlist_main.jpg) | ||
|
||
Use the convenient split view feature that allows simultaneous display of the raw JSON string alongside the list representation. | ||
|
||
![JsonList split view](images/jsonlist_splitview.jpg) | ||
|
||
![JsonList split view landscape](images/jsonlist_splitview_landscape.jpg) | ||
|
||
Enjoy the flexibility of dynamic color support, adapting to your Material Design preferences. | ||
|
||
![JsonList dynamic colors](images/jsonlist_material_colots.gif) |
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.
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 com.sjapps.about; | ||
|
||
public interface ImageItemClick { | ||
void onClick(); | ||
} |
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,10 +1,14 @@ | ||
package com.sjapps.about; | ||
|
||
import com.google.gson.internal.GsonBuildConfig; | ||
import com.sjapps.library.BuildConfig; | ||
|
||
public class LibraryList extends ListGenerator{ | ||
@Override | ||
public void init() { | ||
addItem("SJ Library","1.4", "https://github.com/SlaVcE14/SJ-Library"); | ||
addItem("gson","2.8.9", "https://github.com/google/gson"); | ||
addItem("SJ Dialog", BuildConfig.VERSION_NAME, "https://github.com/SlaVcE14/SJ-Dialog"); | ||
addItem("gson", GsonBuildConfig.VERSION, "https://github.com/google/gson"); | ||
addItem("core-splashscreen","1.0.1","https://developer.android.com/develop/ui/views/launch/splash-screen"); | ||
} | ||
} | ||
|
Oops, something went wrong.