Re: [android-developers] com.samsung.* Android permissions (OEM and proprietary non-android.permission.* permissions)

2014-04-09 Thread smoogli
thanks Nikolay. that's a good tip. tried it on one device I have and could 
see android.permission.*.

I'm sure there are also proprietary permissions on other devices (which I 
don't have so can't check in this way). any pointer to online information 
on such com.* permission would be great!

thanks!

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] com.samsung.* Android permissions (OEM and proprietary non-android.permission.* permissions)

2014-04-09 Thread Nikolay Elenkov
On Wed, Apr 9, 2014 at 3:48 PM, smoogli roy.ben.ha...@gmail.com wrote:
 thanks Nikolay. that's a good tip. tried it on one device I have and could
 see android.permission.*.

 I'm sure there are also proprietary permissions on other devices (which I
 don't have so can't check in this way). any pointer to online information on
 such com.* permission would be great!


Samsung developer sites/resources *should* have some information, but I
don't have any concrete links.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] SoftKeyboard - not showing the auto suggest

2014-04-09 Thread KK
I am going to do an android application. In that app, I have to add the 
customized keyboard.
So that I am trying to create my own customized keyboard. I found the code 
for the keyboard from the android sdk's sample(SoftKeyboard).
When I execute the code, the keyboard is installed and showing in my app.

The problem is,
1) The keyboard is installed and can access by all the apps. But I want to 
install it only for my app.
2) And the keyboard is not giving the auto-suggest words. So How can I show 
the auto-suggest words in that SoftKeyboard.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Getting extended unicode char to display

2014-04-09 Thread dashman

I'd like to display char \u1F374 in a textview.

Not working!

the char is there because I can view with the store app Unicode Map.

Do I have to select a specific font?

Just using default and setting string as \u1F374

Note the code is 5 digits.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: fromHtml doesn't work for textview font size, any help?

2014-04-09 Thread jraanamo
As far as I can see, when converting from HTML string into spannable, only 
color and face are supported (this is with Android 4+ at least). Converting 
the otherway (Html.toHtml) adds more attributes like size. To control the 
size from HTML you are limited to big and small or add your own tag and 
implement Html.TagHandler. Remember that you can set the base text size 
of the TextView and then use big and small to go +/-.

On Wednesday, 29 December 2010 15:41:02 UTC+2, genxsol wrote:

 Hi Dear, 

 i am trying to put text on a text view with different size for each 
 word 

 textView.setText(Html.fromHtml(font size='10' color='red' Word1 / 
 font font size='15' color='white' Word2 /font))); 

 color does work but no font size, any help plz

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Re: fromHtml doesn't work for textview font size, any help?

2014-04-09 Thread Kostya Vasilyev
Html.fromHtml also understands header tags, from h1 to h6. The respective
relative sizes are:

private static final float[] HEADER_SIZES = {
1.5f, 1.4f, 1.3f, 1.2f, 1.1f, 1f,
};

-- K



2014-04-09 23:22 GMT+04:00 jraanamo jukka.raan...@gmail.com:

 As far as I can see, when converting from HTML string into spannable, only
 color and face are supported (this is with Android 4+ at least). Converting
 the otherway (Html.toHtml) adds more attributes like size. To control the
 size from HTML you are limited to big and small or add your own tag and
 implement Html.TagHandler. Remember that you can set the base text size
 of the TextView and then use big and small to go +/-.

 On Wednesday, 29 December 2010 15:41:02 UTC+2, genxsol wrote:

 Hi Dear,

 i am trying to put text on a text view with different size for each
 word

 textView.setText(Html.fromHtml(font size='10' color='red' Word1 /
 font font size='15' color='white' Word2 /font)));

 color does work but no font size, any help plz

  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to the Google Groups
 Android Developers group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.