I want to link the weather widget with my application.First i want to place that icon on the top right corner of my application .How should i do that.I am trying this with the help of setfeaturedrawableresource , but it's not working?
Thanks
You could write your solution here for other pwople to see.
Related
I am doing research in Appium for a few days and get stuck in getting ID.
For some elements which always appear on screen, there may have no problem to get the ID by iuautomatorviewer. However, for some elements which only appear on screen for error notification like an image below and I cannot get an ID of the red circle in the image
Is there any way to get the ID of the red circle?
Thank you in advance!
P/s: I am using Meowchat for practicing only. Thank to Meowchat
i am afraid you cannot, it just a componentDrawable of TextView, not a view .
if you really want to control it , use getCompoundDrawables from EditText, it will help you .
or you can implement yourself Error Notification,make the red circle a view.
Use xpath to find elements.
driver.findElement(By.xpath("//android.widget.EditText[#resource-id='com.minus.android:id/username']");
driver.sendKeys("Username you want to enter");
I am trying to click a image from camera and then trying to get the text and numbers within the image and display in textview in android. I am confused about how to achieve this through my Java code. Does anyone had a similar problem and knows how to solve it? I would be grateful if somebody could help me!Thanks in advance.
If I understood your question correctly you want to get text from an image. You can see this
I am trying to display EditText(To take input from user and perform some operation).
In the above image, I want the EditText control to be displayed in the Hello world info window. Please suggest me any Idea, how to do this. Is it possible to insert UI controls on info window.
Please help!! Any help will be appreciated!!
you can put any layout to infoWindow. Please follow this tutorial
am trying to develop an app in which i have to implement a graph..but the problem is that i dont want a line graph...but rather i want to implement a area chart graph..if i use a line graph,iam not able to colour the graph area.But in my app,i want the graph area to be coloured,and for that i need to implemnt Area Chart.
Its looks like this-
http://www.google.co.in/imgres?q=area+chart+in+excel&um=1&hl=en&sa=N&biw=1366&bih=667&tbm=isch&tbnid=vx30U9kfWKfL9M:&imgrefurl=http://www.brighthub.com/computing/
Can anyone help me on this????anyway thanks in advance
The picture you see is from this link :
a chart engine.
It's a open source.Dig the code , you'll find your solution.
i want to create a home screen application where the applications looks like carousel , and i am able to do it . The problem i am facing is that in my application only the applications icon are getting displayed the text is missing in it , where as my requirement is that i want to both the icon and text to be displayed together.
my application displays same as the above showing image.
i want text to be combined with it as above image.
please help me.
Thanks
datta
So the simplest thing to do would be to create a Compound Control. This compound control would essentially be a LinearLayout with both and ImageView and a TextView in it. Then, where ever you use a CarouselImageView in your code, just use your new compound control instead.