Android :: How To Add Layers On View
May 20, 2010
I'm going to develop a Android program, with a photo display on screen. And there are some text and drawing (circle/Rect) over the photo. The text and drawing will change when use touch on the screen.How can I implement? SurfaceView? ItemizedOverlay? or anything else?
View 1 Replies
Sep 12, 2010
I thought there were layers for maps where you could see restaurants close to your location. Does anyone know how to get this.
View 2 Replies
View Related
Oct 16, 2009
Any idea when an update to Google Maps might be happening? Specifically I'm looking for the layers & My Maps functionality. Something I had in my Nokia N96 version before taking the plunge and upgrading to a HTC Hero. Seems I've taken a back step as currently these functions aren't available yet!
View 8 Replies
View Related
May 10, 2010
I have a multithreaded streaming app which has mainly the following 5 threads. 1 Main App(UI) Thread 1 controller thread (in native) 1 audio decoder thread (in native) 1 video decoder thread(in native) 1 thread to query the head position of audio (in Java) Apart from this I have video rendering with OpenGL. My problem is, if I query the thread priority using the Thread.getPriority method (my native threads make callbacks to Java and I am making the query at that point of time), I am getting the priority of each of them as 5. For my audio query thread (the last one in the list) I am explicitly setting the priority using Process.setThreadPriority(Process.THREAD_PRIORITY_URGENT_AUDIO); Also for my decoder threads, I am giving higher priority than my controller thread(using pthread APIs in native). But still finally all of them seem to have same priority. Also what should I be doing to increase the priority of my threads(both from Java and native)?
View 6 Replies
View Related
Nov 9, 2009
Just got the droid and I love it. However I was playing around with the Google Maps Directions and such, entered in a few locations and it saved all of them to my Layers screen. How can I clear them? I don't want those there when I hit the layers button, but I can't find any option to clear them.
View 12 Replies
View Related
Nov 30, 2009
I'm developing a google maps based application for android 1.6.
My problem is that in my application I have more than one layer that extends from ItemizedOverlay representing information in the map.
The problem is that all the layers implement the onTap method, but now only the last layer (on the top of the stack) detects the tap event, so If the user taps on an item that is in a deeper item the method onTap never fires.
Is there any way to propagate the event to deeper layers?
View 2 Replies
View Related
Feb 8, 2010
So I pull up my "layers" button on GMaps and it shows me the last 7 places I went to, like a history.
Any way to clear or disable this?
View 6 Replies
View Related
Aug 2, 2010
I am trying to set up a ViewFlipper that changes a SlidingDrawers content each time a button is pressed. So far every view I set up worked fine, but now I am trying to create a ListView (including single_choice_mode) within a child view of the ViewFlipper, but my attempt only let to a NullPointerException. As I only discovered ViewFlipper today, I am not yet familiar with it and may not have understood it completely. if someone could give me a hand and help me find out what I have done wrong, that would be great. Here is what I have done:
The code for the onClick event of the ImageButtons:
public void onClick(View v){
if (v == btnExposure){
mFlipper.setDisplayedChild(0); }
else if (v == btnProperties){
mFlipper.setDisplayedChild(1);}
else if (v == btnSpecialEffects){
mFlipper.setDisplayedChild(2);.............
View 1 Replies
View Related
Aug 17, 2010
I want to build my own custom view which should look like the Crysis-GUI.At first I designed a XML-based Layout and made it visible via the setContentView(int resid)-Method. Worked pretty well.But now I wan't to go a step further and draw in my Layout. So I created a new Class, let it extend View and overrode the onDraw()-Method. So far so good.But how can I still use my XML-Layout? I can't do setContentView anymore, so how could the same effect be achieved?
View 1 Replies
View Related
Sep 30, 2009
I have a problem with my DDMS in eclipse. In the logcat view appears only this failure: Logcat View fails with "Could not create the view: For input string: "our" "
I uninstalled and reinstalled the adt and ddms already without any change. I can use the logcat in the command line (tools- adt logcat) but this is not as comfortable as using the logcat in eclipse.
More details of this failure message are:
CODE:...............
View 2 Replies
View Related
Mar 10, 2010
So my layout looks basically like this:
<ScrollView>
<RelativeLayout>
<BunchOfViews/>
<ImageView android:layout_alignParentBottom="true"/>
</RelativeLayout>
</ScrollView>
I have the ScrollView so all of the layout always is visible no matter the height of the screen. The problem is that on a very high screen, I still want my imageview to be at the bottom. However, a child of a ScrollView dont seem to have a defined bottom. The View is placed at the top of the layout. How can I solve this problem in a neat way?
View 4 Replies
View Related
Feb 28, 2010
I like to know how can i clone a view object which is already there in the view hierarchy, so that it can be added to the same view hierarchy again.
View 1 Replies
View Related
Oct 8, 2010
I have an XML layout with some custom tabs, a heading, and a ProgressBar(main.xml). I wish to add another XML layout(home.xml) to the main.xml layout, as i wish to keep main.xml re-usable for other activity's layouts and simply add things to it as necessary.The problem: after inflating R.layout.home into rootLayout, it seems as though the ProgressBar contained in rootLayout is hidden underneath the content of home.xml.Is there a way to tell certain views(via XML) to float above other views when the layout is constructed in this way?if not, am i forced to use methods such as progressBar.bringToFront() to raise targeted views to the top?what alternatives do i have in z-ordering views when some layouts are constructed using inflation?
View 2 Replies
View Related
Aug 18, 2010
I have a WebView inside the ScrollView. The content of WebView dyanamically changes when it displays different html page. I have the following issue: For example I have A.html, and B.html. The content of B.html is larger than A.html, so the page is longer. When WebView load B.html, the ScrollView stretches its size to enable itself scroll for B.html, then if I go back to A.html, ScrollView doesn't resize itself. (The scroll area is exceed the content of A.html) What I want to have, is dynamic change the scroll area of scroll view to fit the webview's content.
View 3 Replies
View Related
Mar 16, 2010
I have a selection for some items using a spinner widget. At the moment the spinner will load a simple Textview and show the name of the item.It is possible to define an own view to show inside the spinner row? I would suspect it being similar to a custom List row.I simply want to show an individual icon left from the spinner text for each item in the list.
View 1 Replies
View Related
Feb 13, 2010
I want to have a View pop in at the bottom of the page exactly like the software keyboard view does in the compose section of the Mms app.It slides in from the bottom, as if it's being added to a vertically oriented LinearLayout, only making the ListView smaller.It becomes a part of the current layout instead of popping up over the top of it.I'd like to to this exact thing with my own custom View.
View 1 Replies
View Related
Sep 17, 2009
I have a problem statement, and here it is: My requirement is: There are a number of images shown on the screen. I want to allow the user to drag and drop any of the images to anyother image. Based on which image is dragged and on which is it dropped, I need to do something specific. So, I need to find a way so that I can get my source view and my target view.To understand this in a better way, consider a practical scenario. In the File Explorer of Windows, we can drag and drop items from the left pane showing the directory tree to any of the folders shown in the right pane.If anyone of you ever faced a similar scenario, please let me know because I could not find a direct support to such a thing (Drag and Drop) in the platform, so may be I need to find an innovative solution to it.
View 4 Replies
View Related
Sep 30, 2009
something weird is happening when i inflate a particular view and i wonder whether i'm running into some kind of namespace collision inside the resource/class space.i have a few custom views in my app and generally i park them in discrete XML files. the views are declared.
View 3 Replies
View Related
Mar 11, 2010
I've tried to add a TextView before a ListView in a LinearLayout. The result is that the ListView wont show at all. The same thing happens if I put the TextView after the ListView, but then I will only see the ListView. Is there a way to get a text view above the ListView without to much of a hassle?
View 10 Replies
View Related
Jun 25, 2010
In my app i'm setting background to each child views in listview. So that listview default focus ( orange color ) is not focusing. Is there any way to set both ( listview focus & child view background)?
View 1 Replies
View Related
Mar 20, 2010
I need to draw a child view containing a rectangle and button on top of the content view at particular location on the parent (content view). How can I do this? Did not find an explicit way to set origin of child view?
View 1 Replies
View Related
May 18, 2010
I have a HorizontalScrollView with a series of CompoundButtons. I want to find the (x,y) for a given child view. I have tried using:
getLocationOnScreen()
getLocalVisibleRect()
getChildVisibleRect()
like this:
View tmpView = this.findViewById(viewId);
Rect hitRect = new Rect();
tmpView.getLocalVisibleRect(hitRect);
the hitRect is always 0,0 - 0,0.
I need the x,y mainly to scroll to a particular child view. Any help is greatly appreciated.
View 1 Replies
View Related
Jul 27, 2010
Please advice how to set fixed heigh (in dip) for the child view of ListView component? I am using relative layout as root layout for the child view when I set backgoround image to relative layout it becomes very height (maybe because backgoround picture is large) and I want to set precisely the height in dp.
View 1 Replies
View Related
Oct 1, 2010
but no use even if try increasing the minheight....
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<!-- Here you put the rest of your current view-->
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"........................
View 6 Replies
View Related
May 26, 2010
I have a custom view that works fine and I'm trying to get gestures into it. The most common technique I see is to add XML, such as this (from Android docs.Can someone point out my errors, suggest a better way that will allow me to get gesture callbacks and/or suggest diagnostic approaches?
View 1 Replies
View Related
Nov 16, 2009
I'd like to show a png or jpg I downloaded from the next in an image viewer intent, but can't get it to work.
Bitmap bmp = getImageBitmap(jpg);
String path = getFilesDir().getAbsolutePath() + "/test.png";
File file = new File(path);
FileOutputStream fos = new FileOutputStream(file);
bmp.compress( CompressFormat.PNG, 100, fos );
fos.close();
Intent intent = new Intent();
intent.setAction(android.content.Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(new File(path)), "image/png");
startActivity(intent);
I know the bitmap is downloaded ok (use the same routine for supplying it my ImageView instances elsewhere in my app) - I think it wrote to file ok, I can see it on disk and the file size is correct. The intent is launched but an exception is thrown: then the new activity just sits there, blank. How does this work?
View 1 Replies
View Related
Aug 4, 2010
I am working on an application where I need to display some locations on a map and in a list view where the user should be able to toggle between these views(activities?). I want the toggle button(s) to be in my custom titlebar like in the images (if they are attached). What is the best practice for this? Tab view seems like a solution but can I customize the tab buttons? Should the map and list be in different activities or the same? Now I have two different activities one extending MapActivity and one extending ListActivity but no way to toggle between them. Is it possible to load activities into a FrameLayout?
list.jpg
49K
Download
map.jpg
67K
Download
View 2 Replies
View Related
Sep 2, 2010
In my code i have state for each row of content so in list view if row has state as read, i need to display it with opacity/ transparency but for the view there is no direct method to set alpha.
View 1 Replies
View Related
Oct 16, 2009
I am looking to create an app with plugin functionality. What I want is to allow a separate plugin "app" to provide me with the view, and take care of the updating of the view that I will use in my list adapter. Essentially, I want the separate app to take care of the bindView and newView methods of my adapter.
I am looking at RemoteViews, but I am not sure if that is exactly what I need, if it would work, or maybe it's what I have to use, since it would be cross-process.
View 1 Replies
View Related
Aug 2, 2010
I am trying to populate a ViewFlipper with a ListView when a certain button is clicked...but I only get a NullPointerException for lv.setAdapter(new ArrayAdapter<String>(this, R.layout.specialeffectsview, specialEffects)); To be honest I don't really know how to do this, I just learned about the ViewFlipper today and I haven't fully understood how to use it yet. If anyone could help me find how what I have done wrong, that would be great.
Here is the code I use:
public void onClick(View v){ if (v == btnExposure){
mFlipper.setDisplayedChild(0);
else if (v == btnProperties){ mFlipper.setDisplayedChild(1); }
else if (v == btnSpecialEffects){ mFlipper.setDisplayedChild(2); String[] specialEffects = getResources().getStringArray(R.array.special_effects_array); lv.setAdapter(new ArrayAdapter<String>(this, R.layout.specialeffectsview, specialEffects)); lv.setChoiceMode(ListView.CHOICE_MODE_SINGLE); }
View 5 Replies
View Related