Skip to content
This repository was archived by the owner on Oct 18, 2024. It is now read-only.

Various design improvements #1023

Merged
merged 18 commits into from
Jun 9, 2023
Merged
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
656e787
refactor: A bunch of (mostly XML) styling
Smooth-E Jun 4, 2023
63dc6c6
fix(Main Activity): Make use of a dedicated Splash Activity to enable…
Smooth-E Jun 4, 2023
58acfec
feat(edge-to-edge): Ground work to support edge-to-edge experiences t…
Smooth-E Jun 6, 2023
a5b4ec9
Merge barnch dev into design improvements
Smooth-E Jun 6, 2023
6aecfd0
fix(edge-to-edge): Manually set bottom padding for fragment containment
Smooth-E Jun 6, 2023
2349b09
feat(edge-to-edge): Allow full activity rebuild on configuration chan…
Smooth-E Jun 6, 2023
9ae9ad9
fix: Finish the Splash Activity after launching the Main one
Smooth-E Jun 6, 2023
8a766f3
fix(templates): The list of templates no longer disappears after an a…
Smooth-E Jun 6, 2023
4cac02a
fix(templates): Keep OnGlobalLayoutListener attached while the View i…
Smooth-E Jun 6, 2023
8ca6841
feat(design): Custom layout for MainActivity's main fragment in lands…
Smooth-E Jun 6, 2023
f3b8687
feat(edge-to-edge): Implement edge-to-edge for PreferencesActivity, m…
Smooth-E Jun 8, 2023
8133c5d
refactor(IDEPreferencesFragment.kt): Comply with the line-length rule…
Smooth-E Jun 8, 2023
14a45d4
refactor(edge-to-edge): Remove PaddingUtils.kt
Smooth-E Jun 8, 2023
c944efd
feat(edge-to-edge): Create a BottomInsetHeightDistributor view
Smooth-E Jun 8, 2023
a5a103c
fix(templates/design): Use OutlinedButton style for the *Exit* button…
Smooth-E Jun 8, 2023
edbcba6
refactor: Comply with AndroidIDE's code style
Smooth-E Jun 8, 2023
c0996d1
refactor: Make use of helper methods. Optimize XML
Smooth-E Jun 9, 2023
a232d62
fix(edge-to-edge): Wrong system bar coloring in Dark Mode
Smooth-E Jun 9, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: Finish the Splash Activity after launching the Main one
  • Loading branch information
Smooth-E committed Jun 6, 2023
commit 9ae9ad953067579eb16cc92841b0bce7d53a97ef
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ class SplashActivity : Activity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
startActivity(Intent(this, MainActivity::class.java))
finish()
}

}