Re: Android Status Bar Icon

2023-05-24 Thread J. Landman Gay via use-livecode
Oops I see you already did a 24x24. That's the suggested size. Maybe see 
what a 16 x 16 does.

--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software | http://www.hyperactivesw.com
On May 24, 2023 11:58:37 AM Dan Friedman via use-livecode 
 wrote:


Greetings!   I am seeing inconsistent results on the status bar icon on 
Android.  On some devices (most running Android 9), the icon that appears 
in a push message is a white or grey square.  I have tried using a 24x24 
PNG for the Status Bar Icon and I also tried a 512x512.   Another device 
running Android 10, displays the image just fine (at either size).  Is 
there an image size that I should be using?  Or are there incompatibility 
with LC and Android 9?


Anyone have any insight to this issue?

-Dan
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your 
subscription preferences:

http://lists.runrev.com/mailman/listinfo/use-livecode





___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Android Status Bar Icon

2023-05-24 Thread J. Landman Gay via use-livecode

Try 24 x 24.

--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software | http://www.hyperactivesw.com
On May 24, 2023 11:58:37 AM Dan Friedman via use-livecode 
 wrote:


Greetings!   I am seeing inconsistent results on the status bar icon on 
Android.  On some devices (most running Android 9), the icon that appears 
in a push message is a white or grey square.  I have tried using a 24x24 
PNG for the Status Bar Icon and I also tried a 512x512.   Another device 
running Android 10, displays the image just fine (at either size).  Is 
there an image size that I should be using?  Or are there incompatibility 
with LC and Android 9?


Anyone have any insight to this issue?

-Dan
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your 
subscription preferences:

http://lists.runrev.com/mailman/listinfo/use-livecode





___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Android Status Bar Icon

2023-05-24 Thread Dan Friedman via use-livecode
Greetings!   I am seeing inconsistent results on the status bar icon on 
Android.  On some devices (most running Android 9), the icon that appears in a 
push message is a white or grey square.  I have tried using a 24x24 PNG for the 
Status Bar Icon and I also tried a 512x512.   Another device running Android 
10, displays the image just fine (at either size).  Is there an image size that 
I should be using?  Or are there incompatibility with LC and Android 9?

Anyone have any insight to this issue?

-Dan
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Android Status Bar

2020-10-13 Thread scott--- via use-livecode
I decided to make a simple test stack… which I should have done before my 
initial post. In my experimentation, if the Standalone Application Settings are 
used to hide the Status Bar then the command  “mobileShowStatusBar" will have 
have no effect when used later in the running app.   If the Standalone 
Application Settings are used to show the Status Bar then “mobileHideStatusBar" 
only hides the icons in the bar (well, most of them) but not the actual bar 
itself. While this has a certain logic, it is quite different than the way it 
works on an iPhone. On iOS the actual bar is hidden thereby making that space 
available to the application. This can be useful when rotating to landscape. In 
my case I am working to adapt an existing iOS app and I was confused as to why 
mobileHideStatusBar wasn’t freeing up space when rotating to landscape. 

(Brian, I looked through the SivaSiva app and couldn’t find any screens with a 
Status Bar showing though the app is huge and admittedly I did not examine 
every screen :- )
—
Scott Morrow

> On Oct 12, 2020, at 6:51 PM, Brian Milby via use-livecode 
>  wrote:
> 
> Hmmm...
> 
> SivaSiva shows/hides the status bar.  Checking the launcher app settings, it 
> does have the status bar set to hidden.  So based on that, just use the 
> hidden option and show the status bar as required while inside the app.
> 
> Sent from my iPad
> 
>> On Oct 12, 2020, at 9:19 PM, scott--- via use-livecode 
>>  wrote:
>> 
>> Thanks Jacque. Then that IS pretty confusing since the Standalone 
>> Application Settings have a “Status Bar” setting and it appears to control 
>> the bar at the top of the screen which is what I would expect to match up 
>> with the Status Bar on iOS. I guess that will require a feature request… and 
>> maybe a documentation adjustment.
>> --
>> Scott Morrow
>> 
>> Elementary Software
>> (Now with 20% less chalk dust!)
>> web   https://elementarysoftware.com/
>> email sc...@elementarysoftware.com
>> booth1-360-734-4701
>> --
>> 
>>> On Oct 12, 2020, at 4:20 PM, J. Landman Gay via use-livecode 
>>>  wrote:
>>> 
>>> I think "status bar" may be a misnomer and it's referring to the three (or 
>>> two on Android 10) buttons that are always available at the bottom of the 
>>> screen. Those are the Back, Home, and (sometimes) the Recents buttons. 
>>> Virtually all Android devices use these "soft buttons" now.
>>> 
>>> I could be wrong but I've never seen those buttons at the top of the screen 
>>> in the status bar area.
>>> 
>>> --
>>> Jacqueline Landman Gay | jac...@hyperactivesw.com
>>> HyperActive Software | http://www.hyperactivesw.com
>>>> On October 12, 2020 3:11:18 PM scott--- via use-livecode 
>>>>  wrote:
>>>> 
>>>> I seem able to hide or show the Android status bar using the radio button 
>>>> in the Standalone Application Settings. I don’t seem able to to this on 
>>>> the fly using  mobileHideStatusBar  or  mobileShowStatusBar once the app 
>>>> is running.
>>>> 
>>>> Dictionary:
>>>> "mobileHideStatusBar does not have any effect
>>>>  on any Android devices with "hardware buttons”
>>>>  embedded in the status bar.
>>>> 
>>>> I don’t think what I’m testing has these buttons in the status bar, though 
>>>> I’m new to android, so I could be confused.  Even so, the fact that I can 
>>>> hide or show the Android status bar from the Standalone Application 
>>>> Settings seems to indicate that it should be possible…
>>>> 
>>>> I didn’t see anything in bugzilla. Has anyone else run into this?
>>>> --
>>>> Scott Morrow
>>>> 
>>>> Elementary Software
>>>> (Now with 20% less chalk dust!)
>>>> web   https://elementarysoftware.com/
>>>> email sc...@elementarysoftware.com
>>>> booth1-360-734-4701
>>>> --
>> 
>> ___
>> use-livecode mailing list
>> use-livecode@lists.runrev.com
>> Please visit this url to subscribe, unsubscribe and manage your subscription 
>> preferences:
>> http://lists.runrev.com/mailman/listinfo/use-livecode
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Android Status Bar

2020-10-12 Thread Brian Milby via use-livecode
Hmmm...

SivaSiva shows/hides the status bar.  Checking the launcher app settings, it 
does have the status bar set to hidden.  So based on that, just use the hidden 
option and show the status bar as required while inside the app.

Sent from my iPad

> On Oct 12, 2020, at 9:19 PM, scott--- via use-livecode 
>  wrote:
> 
> Thanks Jacque. Then that IS pretty confusing since the Standalone 
> Application Settings have a “Status Bar” setting and it appears to control 
> the bar at the top of the screen which is what I would expect to match up 
> with the Status Bar on iOS. I guess that will require a feature request… and 
> maybe a documentation adjustment.
> --
> Scott Morrow
> 
> Elementary Software
> (Now with 20% less chalk dust!)
> web   https://elementarysoftware.com/
> email sc...@elementarysoftware.com
> booth1-360-734-4701
> --
> 
>> On Oct 12, 2020, at 4:20 PM, J. Landman Gay via use-livecode 
>>  wrote:
>> 
>> I think "status bar" may be a misnomer and it's referring to the three (or 
>> two on Android 10) buttons that are always available at the bottom of the 
>> screen. Those are the Back, Home, and (sometimes) the Recents buttons. 
>> Virtually all Android devices use these "soft buttons" now.
>> 
>> I could be wrong but I've never seen those buttons at the top of the screen 
>> in the status bar area.
>> 
>> --
>> Jacqueline Landman Gay | jac...@hyperactivesw.com
>> HyperActive Software | http://www.hyperactivesw.com
>>> On October 12, 2020 3:11:18 PM scott--- via use-livecode 
>>>  wrote:
>>> 
>>> I seem able to hide or show the Android status bar using the radio button 
>>> in the Standalone Application Settings. I don’t seem able to to this on the 
>>> fly using  mobileHideStatusBar  or  mobileShowStatusBar once the app is 
>>> running.
>>> 
>>> Dictionary:
>>>  "mobileHideStatusBar does not have any effect
>>>   on any Android devices with "hardware buttons”
>>>   embedded in the status bar.
>>> 
>>> I don’t think what I’m testing has these buttons in the status bar, though 
>>> I’m new to android, so I could be confused.  Even so, the fact that I can 
>>> hide or show the Android status bar from the Standalone Application 
>>> Settings seems to indicate that it should be possible…
>>> 
>>> I didn’t see anything in bugzilla. Has anyone else run into this?
>>> --
>>> Scott Morrow
>>> 
>>> Elementary Software
>>> (Now with 20% less chalk dust!)
>>> web   https://elementarysoftware.com/
>>> email sc...@elementarysoftware.com
>>> booth1-360-734-4701
>>> --
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Android Status Bar

2020-10-12 Thread scott--- via use-livecode
Thanks Jacque. Then that IS pretty confusing since the Standalone Application 
Settings have a “Status Bar” setting and it appears to control the bar at the 
top of the screen which is what I would expect to match up with the Status Bar 
on iOS. I guess that will require a feature request… and maybe a documentation 
adjustment.
--
Scott Morrow

Elementary Software
(Now with 20% less chalk dust!)
web   https://elementarysoftware.com/
email sc...@elementarysoftware.com
booth1-360-734-4701
--

> On Oct 12, 2020, at 4:20 PM, J. Landman Gay via use-livecode 
>  wrote:
> 
> I think "status bar" may be a misnomer and it's referring to the three (or 
> two on Android 10) buttons that are always available at the bottom of the 
> screen. Those are the Back, Home, and (sometimes) the Recents buttons. 
> Virtually all Android devices use these "soft buttons" now.
> 
> I could be wrong but I've never seen those buttons at the top of the screen 
> in the status bar area.
> 
> --
> Jacqueline Landman Gay | jac...@hyperactivesw.com
> HyperActive Software | http://www.hyperactivesw.com
> On October 12, 2020 3:11:18 PM scott--- via use-livecode 
>  wrote:
> 
>> I seem able to hide or show the Android status bar using the radio button in 
>> the Standalone Application Settings. I don’t seem able to to this on the fly 
>> using  mobileHideStatusBar  or  mobileShowStatusBar once the app is running.
>> 
>> Dictionary:
>>   "mobileHideStatusBar does not have any effect
>>on any Android devices with "hardware buttons”
>>embedded in the status bar.
>> 
>> I don’t think what I’m testing has these buttons in the status bar, though 
>> I’m new to android, so I could be confused.  Even so, the fact that I can 
>> hide or show the Android status bar from the Standalone Application Settings 
>> seems to indicate that it should be possible…
>> 
>> I didn’t see anything in bugzilla. Has anyone else run into this?
>> --
>> Scott Morrow
>> 
>> Elementary Software
>> (Now with 20% less chalk dust!)
>> web   https://elementarysoftware.com/
>> email sc...@elementarysoftware.com
>> booth1-360-734-4701
>> --

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Android Status Bar

2020-10-12 Thread J. Landman Gay via use-livecode
I think "status bar" may be a misnomer and it's referring to the three (or 
two on Android 10) buttons that are always available at the bottom of the 
screen. Those are the Back, Home, and (sometimes) the Recents buttons. 
Virtually all Android devices use these "soft buttons" now.


I could be wrong but I've never seen those buttons at the top of the screen 
in the status bar area.


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software | http://www.hyperactivesw.com
On October 12, 2020 3:11:18 PM scott--- via use-livecode 
 wrote:


I seem able to hide or show the Android status bar using the radio button 
in the Standalone Application Settings. I don’t seem able to to this on the 
fly using  mobileHideStatusBar  or  mobileShowStatusBar once the app is 
running.


Dictionary:
   "mobileHideStatusBar does not have any effect
on any Android devices with "hardware buttons”
embedded in the status bar.

I don’t think what I’m testing has these buttons in the status bar, though 
I’m new to android, so I could be confused.  Even so, the fact that I can 
hide or show the Android status bar from the Standalone Application 
Settings seems to indicate that it should be possible…


I didn’t see anything in bugzilla. Has anyone else run into this?
--
Scott Morrow

Elementary Software
(Now with 20% less chalk dust!)
web   https://elementarysoftware.com/
email sc...@elementarysoftware.com
booth1-360-734-4701
--








___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your 
subscription preferences:

http://lists.runrev.com/mailman/listinfo/use-livecode





___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Android Status Bar

2020-10-12 Thread scott--- via use-livecode
I seem able to hide or show the Android status bar using the radio button in 
the Standalone Application Settings. I don’t seem able to to this on the fly 
using  mobileHideStatusBar  or  mobileShowStatusBar once the app is running.
  
 Dictionary:
"mobileHideStatusBar does not have any effect 
 on any Android devices with "hardware buttons” 
 embedded in the status bar.

I don’t think what I’m testing has these buttons in the status bar, though I’m 
new to android, so I could be confused.  Even so, the fact that I can hide or 
show the Android status bar from the Standalone Application Settings seems to 
indicate that it should be possible…

I didn’t see anything in bugzilla. Has anyone else run into this?
--
Scott Morrow

Elementary Software
(Now with 20% less chalk dust!)
web   https://elementarysoftware.com/
email sc...@elementarysoftware.com
booth1-360-734-4701
--








___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Android Status Bar?

2015-08-11 Thread Roger Eller
Only possible on rooted devices, or in certain customized ROMs from XDA.

https://www.youtube.com/watch?v=94RrpzL_w6E

~Roger


On Mon, Aug 10, 2015 at 6:04 PM, Scott Rossi sc...@tactilemedia.com wrote:

 Is it possible to customize the appearance of the status bar, i.e. making
 it transparent, so we can make the overall stack appearance look more like
 the current Android OS?

 Thanks  Regards,

 Scott Rossi
 Creative Director
 Tactile Media, UX/UI Design




 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Android Status Bar?

2015-08-10 Thread Scott Rossi
Is it possible to customize the appearance of the status bar, i.e. making
it transparent, so we can make the overall stack appearance look more like
the current Android OS?

Thanks  Regards,

Scott Rossi
Creative Director
Tactile Media, UX/UI Design




___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode