Folding the Web: Enabling Real Responsive Design on Foldable Devices
-
Similar Topics
-
By Samsung Newsroom
Starting in 2026, Samsung will enhance its Auto Blocker feature on Galaxy phones and tablets running Android to provide users with greater flexibility while maintaining strong security protections. With this update, users will be able to directly install third-party Android app stores and their apps without Auto Blocker preventing installation, as long as the stores meet certain security and compliance requirements.
Auto Blocker is a sophisticated security tool designed to give users more control over their device protection, primarily by preventing app installations from unauthorized sources. This upcoming enhancement builds on that foundation by supporting additional app distribution channels, while continuing to apply platform protections across the broader Galaxy security framework.
Further details will be announced and implemented later this year.
View the full blog at its source
-
By Samsung Newsroom
Samsung Galaxy Fold devices have taken the mobile industry by storm, offering users a revolutionary way to interact with their applications. One of their key features is the rear display mode that enables users to continue their tasks seamlessly on the cover display while the main display remains turned off. Jetpack WindowManager has introduced APIs to enable this mode programmatically, and starting from One UI 6.0, developers can now utilize these APIs to integrate rear display mode into their applications, enhancing usability and maximizing the potential of foldable devices.
In this blog post, we dive deeper into implementing Jetpack WindowManager's rear display mode in a camera application. By leveraging this mode, users can take selfies with superior image quality using the rear camera instead of the front camera. Join us as we explore the exciting possibilities of foldable technology and uncover how to optimize your applications for the Samsung Galaxy Fold.
You can download the sample camera application here.
CameraXApp.zip (623.3 KB) Sep 26, 2024 Step 1: Add the WindowManager library into the project
WindowManager, a Jetpack library introduced by Google, supports rear display mode starting from version 1.2.0-beta03. To add the WindowManager library, go to Gradle Scripts > build.gradle (Module: app) and enter the following to the dependencies block:
implementation "androidx.window:window:1.3.0" Step 2: Implement the WindowAreaSessionCallback interface in MainActivity.kt
The WindowAreaSessionCallback interface updates an Activity about when the WindowAreaSession is started and ended. Using the onSessionStarted method, this interface provides the current WindowAreaSession as soon as a new window session is started.
class MainActivity : AppCompatActivity() , WindowAreaSessionCallback { … override fun onSessionEnded(t: Throwable?) { if(t != null) { println("Something was broken: ${t.message}") } } override fun onSessionStarted(session: WindowAreaSession) { } } Step 3: Declare variables
The WindowAreaController provides information about the moving windows between the cover display and the main display of the Galaxy Fold device.
The WindowAreaSession interface provides an active window session in the onSessionStarted method.
WindowAreaInfo represents the current state of a window area. It provides a token which is used later to activate rear display mode.
WindowAreaCapability.Status represents the availability and capability status of the window area defined by the WindowAreaInfo object. We utilize this status to change the UI of our application. The status of the Galaxy Fold device can be one of the following:
WINDOW_AREA_STATUS_ACTIVE: if the cover display is currently active.
WINDOW_AREA_STATUS_AVAILABLE: if the cover display is available to be enabled.
WINDOW_AREA_STATUS_UNAVAILABLE: if the cover display is currently not available to be enabled.
WINDOW_AREA_STATUS_UNSUPPORTED: if the Galaxy Fold device is running on Android 13 or lower.
private lateinit var windowAreaController: WindowAreaController private var windowAreaSession: WindowAreaSession? = null private var windowAreaInfo: WindowAreaInfo? = null private var capabilityStatus: WindowAreaCapability.Status = WindowAreaCapability.Status.WINDOW_AREA_STATUS_UNSUPPORTED private val operation = WindowAreaCapability.Operation.OPERATION_TRANSFER_ACTIVITY_TO_AREA Step 4: Create an instance of WindowAreaController in the onCreate method
windowAreaController = WindowAreaController.getOrCreate() Step 5: Set up a flow to get information from WindowAreaController
In the onCreate() method, add a lifecycle-aware coroutine to query the list of available WindowAreaInfo objects and their status. The coroutine executes each time the lifecycle starts.
lifecycleScope.launch(Dispatchers.Main) { lifecycle.repeatOnLifecycle(Lifecycle.State.STARTED) { windowAreaController.windowAreaInfos .map { info -> info.firstOrNull { it.type == WindowAreaInfo.Type.TYPE_REAR_FACING } } .onEach { info -> windowAreaInfo = info } .map { it?.getCapability(operation)?.status ?: WindowAreaCapability.Status.WINDOW_AREA_STATUS_UNSUPPORTED } .distinctUntilChanged() .collect { capabilityStatus = it updateUI() } } } Step 6: Update the UI according to the device's WindowAreaCapability.Status
private fun updateUI() { if(windowAreaSession != null) { viewBinding.switchScreenButton.isEnabled = true } else { when(capabilityStatus) { WindowAreaCapability.Status.WINDOW_AREA_STATUS_UNSUPPORTED -> { viewBinding.switchScreenButton.isEnabled = false Toast.makeText(baseContext, "RearDisplay is not supported on this device", Toast.LENGTH_SHORT).show() } WindowAreaCapability.Status.WINDOW_AREA_STATUS_UNAVAILABLE -> { viewBinding.switchScreenButton.isEnabled = false Toast.makeText(baseContext, "RearDisplay is not currently available", Toast.LENGTH_SHORT).show() } WindowAreaCapability.Status.WINDOW_AREA_STATUS_AVAILABLE -> { viewBinding.switchScreenButton.isEnabled = true } WindowAreaCapability.Status.WINDOW_AREA_STATUS_ACTIVE -> { viewBinding.switchScreenButton.isEnabled = true Toast.makeText(baseContext, "RearDisplay is currently active", Toast.LENGTH_SHORT).show() } else -> { viewBinding.switchScreenButton.isEnabled = false Toast.makeText(baseContext, "RearDisplay status is unknown", Toast.LENGTH_SHORT).show() } } } } Step 7: Toggle to rear display mode with WindowAreaController
Close the session if it is already active, otherwise start a transfer session to move the MainActivity to the window area identified by the token.
While activating rear display mode, the system creates a dialog to request the user’s permission to allow the application to switch screens. This dialog is not customizable.
private fun toggleRearDisplayMode() { if(capabilityStatus == WindowAreaCapability.Status.WINDOW_AREA_STATUS_ACTIVE) { if(windowAreaSession == null) { windowAreaSession = windowAreaInfo?.getActiveSession( operation ) } windowAreaSession?.close() } else { windowAreaInfo?.token?.let { token -> windowAreaController.transferActivityToWindowArea( token = token, activity = this, executor = displayExecutor, windowAreaSessionCallback = this ) } } } Step 8: Start the camera preview
Call startCamera() when onSessionStarted is triggered by the WindowAreaSessionCallback interface.
override fun onSessionStarted(session: WindowAreaSession) { startCamera() } Step 9: Add a button and set a listener to it for activating rear display mode
<Button android:id="@+id/switch_screen_button" android:layout_width="110dp" android:layout_height="110dp" android:layout_marginStart="50dp" android:elevation="2dp" android:text="@string/switch_screen" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintBottom_toTopOf="@+id/horizontal_baseline" app:layout_constraintStart_toEndOf="@id/vertical_centerline" /> viewBinding.switchScreenButton.setOnClickListener{ updateUI() toggleRearDisplayMode() } Incorporating rear display mode into your application can significantly enhance user experience by providing more intuitive control and greater flexibility. By following the outlined steps, you can create a more dynamic and user-friendly interface. As technology continues to evolve, staying ahead with features like rear display mode can set your application apart and offer users a seamless, professional-quality experience. To learn more about developing applications for Galaxy Foldable devices, visit: developer.samsung.com/galaxy-z.
View the full blog at its source
-
-
By Samsung Newsroom
The end of a year is the perfect time to gather friends and family and celebrate the year that has passed as well as the one that is to come. When it comes to planning the perfect year-end party, curating the perfect playlist is a must — but so is ensuring that your audio devices are able to set the tone all night long for that perfect celebratory mood.
In order to help you make your celebration unforgettable, Samsung Newsroom has put together some ideas of ways you can ensure your party is the best in town with Samsung’s sound technologies.
Ultra Slim Soundbar: Rock Out in Style
For those who prioritize style as well as great audio quality, Samsung’s Ultra Slim Soundbar (S801B) is the perfect choice for your year-end celebrations. As its name suggests, the Ultra Slim Soundbar features an incredibly slim design of just 38mm in height and 40mm in thickness — a size equivalent to that of a soda can — meaning that its wall-mounted design is sure to stand out. You can also install it freely around your space thanks to its wireless connectivity to ensure your sound system blends seamlessly into your surroundings.
If you’re looking to further personalize your space, you can give your Soundbar a boost with the Ultra Slim Soundbar Skin (SCFBS8[BW/TK]) released earlier this year, which comes in warm brown and teak colors. Paired with your The Frame and its elegant, modern design, you are set to enjoy not only top-level audio experiences but also a cozy, festive feel.
Despite its slim appearance, the Ultra Slim Soundbar is capable of powerful sound. Designed with 3.1.2-channel technology that features seven front speakers and one subwoofer centered on the top two speakers, the Ultra Slim Soundbar provides complete and truly surround-sound experiences. Dolby Atmos support also further contributes to providing you with captivating entertainment experiences.
S-Series Soundbar: Envelop Your Space With Truly Immersive Sound
For those who love to set the scene with truly immersive sound experiences during a celebration or party, the S-Series Soundbar is the soundbar for you.
The S-Series Soundbar delivers rich, room-filling surround sound able to reach every person in the room. This compact, 67cm, all-in-one 5.0-channel soundbar has an impressive four built-in woofers and three tweeter speakers, providing you with a fully immersive, 3D sound experience — all without the need for a subwoofer.
In addition, Adaptive Sound technology is able to analyze the source of any sound in order to automatically deliver optimized audio based on its specific genre. Experience the best, most immersive audio for each and every type of content you’re enjoying, whether it’s a sports game, a classical performance or an action movie.
Your S-Series Soundbar can be easily connected to your Samsung Smart TV and is the first soundbar in the industry to support Dolby Atmos connection for room-filling, optimized 3D sound.
Q-Series Soundbar: Bring the Cinema Experience Into Your Home
If you’re looking to celebrate the year-end season with your favorite movies or TV shows, you can transform your home into a cinema with the room-filling sound of Samsung’s premium soundbar, the Q-Series Soundbar (Q990B).
With an astounding 17 front surround sound speakers, one subwoofer and four up-firing speakers, the Q-Series Soundbar fills the room with truly cinematic surround sound. Synced with your Samsung Neo QLEDs, these 22-channel speakers can deliver truly immersive surround sound experiences like no other.
Samsung’s proprietary Q-Symphony technology allows for compatible TVs and soundbars to play audio at the same time, in sync, taking your listening experiences to the next level through powerful sound quality. Meanwhile, Spacefit Sound technology optimizes your audio based on the structure and layout of your room, providing you with sound that is perfectly crafted for your space and rivals a VIP seat in a movie theater.
In addition, the Q-Series Soundbar has been recognized by renowned global media outlets for its immersive sound experiences, as well as its sleek design.
Sound Tower: Take the Party Spirit to the Next Level
If you’re planning to celebrate the year-end with a bang and throw a party, the Sound Tower (MX-ST90B) is a must-have. This oval Sound Tower fills up virtually any space with 3D audio. The 24.5cm speaker with a built-in woofer provides the perfect punching bass experience, with up to 1700W bass boosting for a beat that sets the party mood perfectly.
In addition to its powerful audio capabilities, the Sound Tower’s various light modes provide an audio-visual harmony that truly matches the mood of the night. Its Bluetooth multi-connection, which allows for two smart devices to be connected simultaneously, and its Group Play functionality, which connects up to 10 Sound Towers, really help you get the party started both indoors as well as outdoors.
Be sure to finish your year strong with Samsung’s range of soundbar and Sound Tower devices. Once you’ve chosen your perfect soundbar based on your own preferences and purposes, enjoy enriching sound during your year-end festivities and beyond.
View the full article
-
-
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.