Click here to Skip to main content
15,891,841 members
Home / Discussions / Android
   

Android

 
QuestionClass requires API level 11 (current min is 8) Pin
Jassim Rahma4-Apr-14 2:09
Jassim Rahma4-Apr-14 2:09 
AnswerRe: Class requires API level 11 (current min is 8) Pin
Peter Leow4-Apr-14 2:29
professionalPeter Leow4-Apr-14 2:29 
AnswerRe: Class requires API level 11 (current min is 8) Pin
Rafique Android Developer17-Apr-14 5:04
Rafique Android Developer17-Apr-14 5:04 
Questionproblem with android html5 app Pin
Jassim Rahma30-Mar-14 0:20
Jassim Rahma30-Mar-14 0:20 
AnswerRe: problem with android html5 app Pin
Kornfeld Eliyahu Peter30-Mar-14 3:37
professionalKornfeld Eliyahu Peter30-Mar-14 3:37 
GeneralRe: problem with android html5 app Pin
Jassim Rahma30-Mar-14 7:56
Jassim Rahma30-Mar-14 7:56 
AnswerRe: problem with android html5 app Pin
Kornfeld Eliyahu Peter30-Mar-14 7:59
professionalKornfeld Eliyahu Peter30-Mar-14 7:59 
NewsBitmap from view with opaque/semi transparent background Pin
DaveyM6926-Mar-14 12:25
professionalDaveyM6926-Mar-14 12:25 
I'm using the code below to create a filled rounded rectangle with border of a view.

The problem is:
1. If Alpha is set high, the bitmap of the view is no longer visible
2. If Alpha is medium, the bitmap of the view is also dulled

I want the foreground to be as the original on top of the background that is controlled by the Alpha value

Java
Bitmap bitmap = getBitmapFromView(view);
Canvas canvas = new Canvas(bitmap);
Paint background = new Paint();
RectF rectF = new RectF(1, 1, bitmap.getWidth() - 2, bitmap.getHeight() - 2);

// draw background
background.setStyle(Paint.Style.FILL);
background.setColor(BACKGROUND_COLOUR);
background.setAlpha(ALPHA);
canvas.drawRoundRect(rectF, ROUNDING, ROUNDING, background);

// draw border
background.setStyle(Paint.Style.STROKE);
background.setStrokeWidth(LINE_THICKNESS);
background.setColor(BORDER_COLOUR);
canvas.drawRoundRect(rectF, ROUNDING, ROUNDING, background);

// draw foreground
Paint foreground = new Paint();
canvas.drawBitmap(bitmap, 0, 0, foreground);

return bitmap;

Dave

Binging is like googling, it just feels dirtier.
Please take your VB.NET out of our nice case sensitive forum.
Astonish us. Be exceptional. (Pete O'Hanlon)

BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)



GeneralRe: Bitmap from view with opaque/semi transparent background Pin
hhsumon31-Mar-14 2:00
hhsumon31-Mar-14 2:00 
GeneralRe: Bitmap from view with opaque/semi transparent background Pin
DaveyM692-Apr-14 9:36
professionalDaveyM692-Apr-14 9:36 
Questiondetection de personne dans une image Pin
ranouna24-Mar-14 6:12
ranouna24-Mar-14 6:12 
SuggestionRe: detection de personne dans une image Pin
Richard Deeming24-Mar-14 10:06
mveRichard Deeming24-Mar-14 10:06 
Generalcount the number of people in the image Pin
ranouna25-Apr-14 0:58
ranouna25-Apr-14 0:58 
QuestionHow to make Norwegian Text to Speech Application in Android Pin
Member 883863721-Mar-14 3:40
Member 883863721-Mar-14 3:40 
AnswerRe: How to make Norwegian Text to Speech Application in Android Pin
Member 107242124-Apr-14 0:23
Member 107242124-Apr-14 0:23 
Questionhow to use MCC, MNC, LAC, CID current location find in android app Pin
aks_aashu19-Mar-14 2:16
aks_aashu19-Mar-14 2:16 
AnswerRe: how to use MCC, MNC, LAC, CID current location find in android app Pin
Richard MacCutchan19-Mar-14 3:55
mveRichard MacCutchan19-Mar-14 3:55 
QuestionRe-Material to start android programming and sites to visit Pin
Member 1067900618-Mar-14 0:40
Member 1067900618-Mar-14 0:40 
AnswerRe: Re-Material to start android programming and sites to visit Pin
Richard MacCutchan18-Mar-14 0:51
mveRichard MacCutchan18-Mar-14 0:51 
AnswerRe: Re-Material to start android programming and sites to visit Pin
Member 1069188424-Mar-14 19:51
Member 1069188424-Mar-14 19:51 
QuestionNo open asp page when I post data from Android Pin
Ngan Tran17-Mar-14 23:16
Ngan Tran17-Mar-14 23:16 
QuestionAndroid SDK Tools Pin
Member 1054906116-Mar-14 22:23
Member 1054906116-Mar-14 22:23 
AnswerRe: Android SDK Tools Pin
Peter Leow16-Mar-14 22:51
professionalPeter Leow16-Mar-14 22:51 
QuestionPrint via android Pin
Member 947380915-Mar-14 23:03
Member 947380915-Mar-14 23:03 
QuestionRedirect in Web form that do not any thing Pin
Ngan Tran15-Mar-14 2:59
Ngan Tran15-Mar-14 2:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.