Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Closed 9 years ago.
Improve this question
I am making a game which requires to use of SVGs and I cannot figure out how to assign custom vertices(Shape) to my SVG image for its Body.When I was using pngs instead of SVGs then I was able to give the exact vertices dor the body with the help of Android Vertices Helper but now with Svgs the vertices from AVhelper are giving me abnormal results.Its actually giving me a very large body as compared to its image.Any help would be highly appreciated.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Closed 9 years ago.
Improve this question
I just released a simple app on Google Play, and I realized the file size ended up as 37M! My app consists of 100+ PNGs how could I reduce the file size to below 10?
You should use tinypng. I use it A LOT for my android projects and it GREATLY reduces the size of all your png files! :)
You may try to export your png's to jpg's. If no transparency needed, of course.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Closed 9 years ago.
Improve this question
I have a quiz app . when a user scores 90% and above the congratulation screen will be displayed. My question is i want the background of the screen to have small and different coloured paper like objects falling creating a illusion that i am congratulating him.
Please help me how to implement this idea.
You can use animation to to show falling color objects. You can follow this link to view of this type of animation:-
Frame By Frame Animation
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
Hi Can anyone help me with any links or hints on how I can achieve the following.
I need to be able to plot lines based on the touch event by the user from the center of a pie chart/circular image. I am a little familiar with aChartEngine, but not able to figure out how I can do it. I also need to store the XY co-ordinates so that I can reproduce it at a later point in time (the graph/image size will be different). So my XY points from the touch events should be from the center of the graph/image. Any leads/hints/links will be really helpful. Thanks
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Closed 9 years ago.
Improve this question
Here I am trying to implement this kind of Step Line Graph in Android but not able to find better option for how to generate that graph.
I look some links which is similar I want. I am newbie in Android for Graphs/Charts Library.
Graph Image - 1
Graph Image - 2
Is it possible same graphs in android?
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Closed 9 years ago.
Improve this question
I want to create a custom Socket Factory which can catch network traffic (i want to get all incoming and outgoing headers especially).
I have tried reading java reflection api and also looked at android.webkit.Network class for android version less than 14 and android.webkit.WebViewCore for versions greater than 14 but could not find solution or any logic.
If anybody can give me code sample for that then it will be very helpful for me.