An Early Look At Android M's Multi-Window Mode For Tablets 95
Ars Technica has a look at the experimental multi-window mode in the just-announced Android M. It's not a headlining feature yet: "buggy, busted, and buried, but intriguing nonetheless" is how Ars describes it. Android Police is similarly faint in its praise. All that might be true, but to many users even a partly working multi-window mode would be welcome, especially one blessed by Google. (Some Samsung users have had multi-window support for a while, but not built into the OS proper, and multi-window capabilities can be found via app, too.)
So now... (Score:1)
Re:So now... (Score:5, Informative)
Re: (Score:2)
Because Android allows apps to run in the background (and I mean actually run, not register to be woken up by certain events as on iOS), we have that already. This will just let you interact with them all at once.
So finally I will have multiple apps in the foreground bringing my tablet to a crawl.
Jokes aside, have Google announced wich devices will get this, I'm wondering if my Nexus 7 and 4 will receive the official update.
Re: (Score:2)
Re: (Score:1)
and I mean actually run, not register to be woken up by certain events as on iOS
Thats why iPhone outlasts Android phones, for a given size.
Re: (Score:2)
Re: (Score:1)
In both specs and independent usage tests the iPhone 6 Plus outlasts the battery of the Nexus 6.
http://www.trustedreviews.com/... [trustedreviews.com]
Re: (Score:2)
Re: (Score:1, Flamebait)
In other words "la la la. I'm not listening."
Re: (Score:2)
Re:So now... (Score:5, Funny)
Seriously dude, your real world experiences are WRONG. Get your facts from the internet, not real life.
Joking aside, give up. The guy you're trying to argue with is utterly impervious to logic, facts or reason. I've tried arguing with him and he's utterly impenetrable.
Re: (Score:2)
Re: (Score:2)
It's not surprising you don't understand anecdotes are not data.
Re: (Score:2)
No indeed you can't win with anecdotes of observances against specs and independent tests.
You're no better than a global warming denier who's seen snow in march.
Re: (Score:2)
Re: (Score:2)
Re: (Score:2)
I'm surprised you haven't put two and two together. All your phones last longer than all your wifes phones. That's one of the two major trends your case shows, the other being that, coincidentally, all your phones were Android devices and hers were iphones. I'd be willing to wager real money that usage patterns are quite different (ie. she probably uses her phone more, or some feature of it that draws more battery power - maybe just checking it more often (screen use); maybe she keeps gps/wifi/bluetooth all
Re: (Score:2)
Re: (Score:2)
Exactly. An anecdote that's not even of a proper side by side test, of two phones doing the same thing is completely useless.
Re: (Score:2)
Re: (Score:2)
The scientific method is obviously alien to you.
Re: (Score:2)
Re: (Score:2)
No indeed you can't win with anecdotes of observances against specs and independent tests.
You're no better than a global warming denier who's seen snow in march.
Because no tech company has EVER fudged on benchmarks!
Re: (Score:2)
No, I'm positing that your wife is doing lots of video calls to her lover that you don't know about.
And that as well as being a cuckold, you don't understand the scientific method.
Re: (Score:2)
Re: (Score:2)
Wrong. Read some Shakespeare, moron.
Re: (Score:2)
https://en.wikipedia.org/wiki/... [wikipedia.org]
Re: (Score:2)
Re: (Score:2)
I'm glad you are beginning to see you don't know everything. Next stop, the scientific method...
Re: (Score:2)
Re: (Score:3)
In other words "la la la. I'm not listening."
...to random statements on the Internet that conflict with observed reality.
That seems sensible to me.
Re: (Score:2)
Evidence was posted. So your your attitude is equally ignorant.
Re: (Score:2)
Re: (Score:2)
You realise battery life depends extremely heavily on installed apps, and how often they query the network in the background?
Re: (Score:2)
Re: (Score:2)
In both specs and independent usage tests the iPhone 6 Plus outlasts the battery of the Nexus 6.
http://www.trustedreviews.com/... [trustedreviews.com]
This all reminds me of the fuel consumption figures published by car manufacturers, which have no connection to real world performance.
Re: So now... (Score:2)
So explain which use case does iOS not allow with its multitasking abilities?
Re: (Score:2)
Defensive much? He didn't say there were any use cases. He did, however, accurately describe how iOS allows apps to gain background processing time.
Re: So now... (Score:2)
He also said something that was patently untrue....
Hint: How would music, gps, VOiP, etc. apps work if they weren't constantly running in the background?
Re: (Score:2)
Re: So now... (Score:2)
There are two types of location aware apps for iOS. One type just asks the OS to notify it when the location changes. The other is constantly running and tracking location. For instance, something like Nike+ GPS is constantly running and tracking your location. You can actually tell which is which by the icon on the status bar - it will be either solid or outlined.
As far as sound, how could the stream just be "passed off to the OS" in the case of something like the OverCast that is constantly processing the
Re: (Score:1)
There are two types of location aware apps for iOS.
According to Apple's documentation (linked from my post), there are three.
Tracking the User’s Location
There are several ways to track the user’s location in the background, most of which do not actually require your app to run continuously in the background:
- The significant-change location service (Recommended)
- Foreground-only location services
- Background location services
The significant-change location service is highly recommended for apps that do not need high-precision location data. With this service, location updates are generated only when the user’s location changes significantly; thus, it is ideal for social apps or apps that provide the user with noncritical, location-relevant information. If the app is suspended when an update occurs, the system wakes it up in the background to handle the update. If the app starts this service and is then terminated, the system relaunches the app automatically when a new location becomes available. This service is available in iOS 4 and later, and it is available only on devices that contain a cellular radio.
The foreground-only and background location services both use the standard location Core Location service to retrieve location data. The only difference is that the foreground-only location services stop delivering updates if the app is ever suspended, which is likely to happen if the app does not support other background services or tasks. Foreground-only location services are intended for apps that only need location data while they are in the foreground.
You enable location support from the Background modes section of the Capabilities tab in your Xcode project. (You can also enable this support by including the UIBackgroundModes key with the location value in your app’s Info.plist file.) Enabling this mode does not prevent the system from suspending the app, but it does tell the system that it should wake up the app whenever there is new location data to deliver. Thus, this key effectively lets the app run in the background to process location updates whenever they occur.
Important: You are encouraged to use the standard services sparingly or use the significant location change service instead. Location services require the active use of an iOS device’s onboard radio hardware. Running this hardware continuously can consume a significant amount of power. If your app does not need to provide precise and continuous location information to the user, it is best to minimize the use of location services.
For information about how to use each of the different location services in your app, see Location and Maps Programming Guide.
You can read through that document yourself to answer the rest of your questions.
Consumers. Trusting marketingspeak and assuming they know how things actually work since the dawn of time.
Re: (Score:2)
Re: So now... (Score:2)
What is a "development server"?
Re: (Score:2)
Re:When will Firefox OS get this functionality? (Score:4, Funny)
"When will Firefox OS be getting this functionality?"
They'll get tabs instead.
Is this different than Samsung? (Score:2)
Obviously - given the amount of stuffing around and warnings you apparently get when enabling it - this feature is not meant to be used yet, but as far as it goes what is different to say Samsung's implementation? I've seen the Samsung one and it seems to work fine (in the limited cases I used it) so is there some differentiating feature here? Like APIs for apps to share resources or something? Aside from the vendor-specific aspect of Samsung's one of course.
Having also used multi-windowing on an x86 Surfac
Re: (Score:2)
Re: (Score:2)
Re: (Score:2)
I don't know about more recent implementations, but I remember that Samsung originally only allowed you to run some of their stock apps in multiple windows. When I was at the Verizon store, I almost bought a Note 2 for its multi-windowing capability until I noticed in some fine print near the display that it only worked with some stock apps... so I ditched that idea and went with a device better suited for phone use.
Re: (Score:2)
See, when you say "in the limited cases I used it" did you not find it irritating as hell and disable it like I did?
As for productivity... it's a tablet OS, it's consumptive, not productive. It's (normally) missing a keyboard so you can actually do some entry without covering the thing you're entering into or reading from, (always missing) a mouse so you can actually copy and paste with some accuracy and speed, and (always missing) a second discreet screen so the OS can't misjudge another futile attempt to
Re: (Score:2)
Discrete* damnit.
Re: (Score:2)
You can use bluetooth mice and keyboards on Android.
Re: (Score:2)
You can use bluetooth mice and keyboards on Android.
Thereby negating the only advantage of a tablet, namely that you can "surf the interweb" one handed.
So I've heard.
Re: (Score:2)
See, when you say "in the limited cases I used it" did you not find it irritating as hell and disable it like I did?
I only really used it for dropping note, document or gallery apps over emails to copy things out of.
As for productivity... it's a tablet OS, it's consumptive, not productive. It's (normally) missing a keyboard so you can actually do some entry without covering the thing you're entering into or reading from, (always missing) a mouse so you can actually copy and paste with some accuracy and speed, and (always missing) a second discreet screen so the OS can't misjudge another futile attempt to change the sub-page for an attempt to change apps entirely.
Well I guess they don't need the feature then since the status quo is what it is and is never to be changed. There are hundreds of choices for keyboard covers for tablets and actually you can quite happily plug a USB mouse into an Android tablet and it will work. Not to mention multiple windows and productivity on computers came along decades before multiple screens became even moderately common.
The Surface is a very different device
Yes, all I sa
Participatory culture (Score:5, Interesting)
As for productivity... it's a tablet OS, it's consumptive, not productive.
The artificial distinction drawn between "consumptive" and "productive" user interfaces on a device that can theoretically support both is the problem. It acts as a barrier to participatory culture [wikipedia.org], as a lot of people don't have $400 to splurge on a "productive" device when they get the itch to do something "productive".
It's (normally) missing a keyboard
For someone who already bought a tablet computer or received one as a gift, a $50 Bluetooth keyboard is still less expensive than a $400 "productive computer".
(always missing) a mouse so you can actually copy and paste with some accuracy and speed
True, the text selection mechanism on Android through level L leaves something to be desired. But that's an argument for improving the text selection mechanism, not for continuing "consumptive" policies.
Oh good (Score:2)
Another dysfunctional window manager. On my tablet there are already multiple apps running.
Is it that hard to write a SMALL window manager that works? Looks like everyone writes one before they write a web browser.
Is side by side not simple? (Score:2)
When I hold the home button I see the most recent windows and can jump to the one I wish to bring up. That's a simple window manager. If you want more it's not simple anymore.
My tablet's screen is twice as big as that of a phone. All I really miss is the ability to edit in one app while referring to information displayed through another app. Are you trying to claim that a simple side-by-side tiling window manager is "not simple anymore"? Heck, Windows 1 had that.
Does 2012 Mark the End of the Netbook? (Score:2)
Maybe you should run Windows?
There was a period of at least a year when makers of Windows laptops essentially ignored the 10-inch size class in favor of the higher-margin tablet segment. (See Does 2012 Mark the End of the Netbook? [slashdot.org]) This wasn't solved until ASUS brought out the Transformer Book.
Re:Oh good (Score:5, Insightful)
oh the irony, Microsoft and Ubuntu and GNOME-tards making sucky UI to turn PC into a tablet like thing, while many tablet users are sick of the tablet UI and want the tried and proven simple window manager. I've noticed a trend in any software with UI, high IQ morons taking that which has been refined, and making such things obtuse, disruptive to workflow, and changing for change alone's sake.
Re: (Score:3)
I've noticed a trend in any software with UI, high IQ morons taking that which has been refined, and making such things obtuse, disruptive to workflow, and changing for change alone's sake.
I doubt any of these 'you will do things my way because I know what's best and it's not what you think is best' bozos really have high IQs. Dunning-Kruger effect seems far more likely.
Re: (Score:2)
high IQ morons taking that which has been refined, and making such things obtuse, disruptive to workflow, and changing for change alone's sake. Why do you think they have a high IQ?
Re: (Score:1)
I owned an Android tablet for several years. Recently, I purchased a 10 inch Windows tablet. After using both, I discovered that what I want in a tablet is a Windows desktop. The interface isn't that bad after setting the "Single-click to open an item" option. If I need a keyboard for serious typing, I just slide the tablet into its hardware keyboard. I can use all of my favorite Windows programs and I don't have to settle for the always changing, poorly done, advertisement displaying, spyware crap that inf
Re: (Score:2)
Actually it looks like they are just trying to converge and end this whole "consumption" / "production" device nonsense.
Only if the app's developer owns a Samsung (Score:2)
But how many apps support multi-window operation? Last time I checked the Android CDD, it allowed apps to assume that the screen size will never change after installation, other than by exchanging width and height. As far as I can tell, apps have to opt-in to Samsung's multi-window mode, and only developers of apps who regularly test on a larger Samsung Android device (Galaxy Note, Galaxy Tab) are likely to enable that.
Should have been done in Honeycomb (Score:2)
What makes you think that ANY implementation regardless of who it's from, (Google, Samsung, etc), is going to work correctly if the assumption is: "My app always runs in full screen mode, and can completely trash the framebuffer without care."?
The real WTF is how this assumption survived in Android H through L. Google should have invalidated this assumption way back in Honeycomb, the first tablet-optimized version of Android.
Re: (Score:2)
Android apps are allowed direct access to the frame buffer? Eek! Even our favorite punching bag, Windows, hasn't allowed that since Windows 95.
Re: (Score:2)
This is very old news. Multi-window Android is already here for literally years. Made by Samsung.
As someone who has never bought a Samsung device, that's not terribly helpful.
Re: (Score:2)
Let me put it another way: Some people want to be able to work in one app while referring to information presented through another.
Reverse Windows 8 (Score:2)
The geniuses at Microsoft carefully followed the fashion to ensure that "Apps" are only single windowed, just like the so successful i*s. And now some ar*hole at Google is making them put it all back again. It is hard to be a non-thinking follower.
Snap an App (Score:2)
The geniuses at Microsoft carefully followed the fashion to ensure that "Apps" are only single windowed
How so? Windows 8's Windows Runtime environment introduced the "Snap an App" feature [dummies.com], which allows a 3:1 split of the horizontal space. Press Win+Period, and one Windows Runtime app fills 1/4 of the screen's width, roughly as wide as a cell phone's display, and the other 3/4 shows either the desktop or another Windows Runtime app. Windows 8.1 allowed changing the ratio, reminiscent of the tiling window manager that shipped with Windows 1.
Once you understand Snap an App, you'll realize that the most serious
Re: (Score:3)
Actually, iOS allows an app to have multiple application windows. iOS has had multi-monitor support since forever. What you meant to write is that iOS does not display multiple apps on the same screen.
Re:so what did they do? (Score:4, Funny)
To a hipster, everything old is new, because they know nothing about the past.
I hear that, in the next radical upgrade, Android will add 'borders' to their apps and you'll be able to click on these 'windows' and move them around the screen and resize them, so you can control how much of each app you see, based on what you're doing at the time. It'll be so cool!
Re: (Score:2)
reinvent the tiling wm?
No they are implementing the existing tiling window manager concept on Android, which doesn't currently have such a thing.
Porn (Score:2)
This is a porn-driven OS enhancement, right?
Re: (Score:2)
This is a porn-driven OS enhancement, right?
Who needs multiple windows to look at porn? Full screen single app viewing is precisely what, um, my friends use for looking at porn.
Mutli-window via scaling? (Score:2)
I didn't RTFA (hey, this is Slashdot) but I could see where recent tablet iterations have such high DPI that it might be most useful for multi-window mode to split the screen and scale the app windows to fit more than one app at a time on the screen.
It seems like a lot of apps have a kind of defined layout and not much if any layout intelligence built into them, so changing their window size to less than screen size would seem to require many apps to be rewritten to support other windows sizes than full scr
going backward or moving forward (Score:2)
Re: (Score:2)
I hope Android can go to Turbo Vision style interface [sourceforge.net] before it finally reverts to a command-line interface.
Full circle! (Score:1)