Android : Use Some Kind Of "external ID" For A View?
Dec 19, 2009
I wrote a View class based on ViewSwitcher and now I want to write helper classes for the view like known form the ListView: ListAdapter, ListActivity and so on..
Regarding the activity class I ran into a problem. The ListActivity forces you to add a ListView to your activity with a fixed id: @id/android:list. In my base activity class i want to archive the same, forcing a special id so that my helper classes can access the view object.
As I'm writing a general lib that could be used in various projects I can't use R.id.foobar to get the view as there's no R class. The specific project will an own R.java.
So I peeked at the source code ...
Ok, I could write my on R class, put it directly into my package and try to access it in the same way but I've no clue what value the id should have or need?
Also I couldn't find any R class at android_frameworks_base/core/java/com/android/internal
And even if this problem is solved: How can the user of my lib access "my id" from his layout XML?
View 2 Replies
Nov 22, 2010
I want to show images from external url listed in external xml ("similar" to picasa API).
from where i need to start, there is an app sample like this, do i can read is source?
View 1 Replies
View Related
Sep 14, 2009
I'm just wondering if I'm able to create a View from an external XML source. As I was reading, you must place the XML layout inside the res/layout and when you compile it, you can load the layout by typing setContentView(R.layouts.my_layout). What if I have this XML layout online (on a website) and I want to create the layout on runtime? Is there any way to do this? Or I have to parse the XML and create the layout (hard-coded)?
View 8 Replies
View Related
Jul 27, 2010
I want to dynamically pull in a layout from an external source. As discussed in this thread from September 2009 -
http://groups.google.com/group/android-developers/browse_thread/threa.
I am wondering if the situation has changed since this discussion or if it is likely to change. I understand the need to use pre-compiled xml layouts so if there is an option to dynamically pull in a layout that is already compiled that would be fine. Basically I want a setup where I can change a view layout without an app update. The elements within the view would be fairly static (e.g. there will be 2 buttons call foo and bar that fire fooOnClick and barOnClick). The only work around I can think of is a custom scripting language that allows the definition of views that are created from code. Ideally this would parse the same xml as a standard layout. Obviously this would involve a lot of code and probably be fairly slow.
Button btnFoo = new Button(); btnFoo.setText("foo"); dynamicLayout.addView(btnFoo);
If this is the only option at least the EdsMagicLayoutInflater class would be reusable across projects.
View 3 Replies
View Related
Sep 6, 2012
I was planning to make my phone (a rooted SGSII Skyrocket on AT&T running GB) accessible over SSH so I could remote-control it in the event thieves (or my parents) took it. how would I know what my phone's external IP is? Any app that can read the phone's external IP and respond with it via, say, text message?
View 4 Replies
View Related
Jul 22, 2010
Recently my HTC Desire got damaged but fortunately I had copied and pasted all the data from my HTC Desire to my laptop. I connected my Desire to my Laptop in 'Disk Drive' mode and copy/pasted all contents/folders.
Now my Desire replacement has not yet arrived. Is there anyway I can access my 'Text' messages that were stored on my Desire in my laptop.
Where will I find those text and do I need some external program to open/view them?
View 3 Replies
View Related
Dec 3, 2012
I must have changed a setting somewhere. I used to be able to connect my SGS3 to my computer and see the files of both my internal and external SD cards. For some reason now all I can see is my external SD card. I am running a CyanogenMod 10 ROM. I have USB storage activated.
View 1 Replies
View Related
Mar 18, 2010
Is there any kind of "journal" app?What I meant, is an app that I can write something, then add photos, videos, record audios. Some kind like diary.In Windows Mobile, there is OneNote for this more or less.
View 4 Replies
View Related
Apr 9, 2010
I'm currently looking in to layouts. can anyone tell me which layout is the best layout to be used for all kind of applications.
View 4 Replies
View Related
Dec 27, 2009
Looking the doc with class SurfaceHolder is possible set the kind of surface format. I need to show images YCbCr_420_SP format. If I set YCbCr_420_SP format is not clear after how I can set the data. With Canvas object I can draw only bitmap format and not YCbCr_420_SP. Then my question is : can I draw directly on surface using YCbCr_420_SP data ? how ?
View 2 Replies
View Related
Apr 12, 2010
I have created a listview with simple list items.When i click on any of the list item a new activity is launched and therefore a new screen opens. But now i want that when i click on the list item i should have a kind of popup which has three options and depending on the option i click a new activity should be launched. Therefore in place of one activity i want an option of choosing one of the three activities depending upon what i chose in the pop up box. I should also have the flexibilty to design the pop up box the way i want.
View 3 Replies
View Related
Nov 17, 2010
When I get my activity chooser for my ACTION_GET_CONTENT Intent there is applications I don't want to be there, like the ones who will first create content and then pass the URI to me, like the Voice Recorder. When you use Gmail and try to attach a file you will only see the applications/activities that picks data from your SDCard like Gallery, and in my case Astro (file manager application).
So my question is, what kind of Intent does Gmail use for their Attach? Here is my code, something must be missing since I get applications like Voice Recorder and so on.
Intent action = new Intent(Intent.ACTION_GET_CONTENT);
action = action.setType("*/*").addCategory(Intent.CATEGORY_OPENABLE);
startActivityForResult(Intent.createChooser(action, "Upload file from..."), 1);
View 1 Replies
View Related
Jun 30, 2009
I would like to build an app that OCR a pictures and get text from them. What java library should I use?
View 3 Replies
View Related
Nov 9, 2010
its not that bad but in all honesty, I found it to be pretty bland and boring (almost ugly). It also lacks many nice features found on other phones with manufactuer overlays, (This is probably the biggest reason why they put those overlays on top of stock android). Obviously the best thing about it of course is the quicker updates (in most cases). But other than that, my experience with stock was not too fun compared to using now Launcher Pro overtop of just plain stock and even now over TW (I know, i know, people hate TW).
Just had to put this out there. (At work TBC)
...Continued:...................
View 13 Replies
View Related
Dec 26, 2012
recently bought a car in CHINA and it came with a Android powered dvd/navigation/fm/player/etc. I have it already connected to a Mobile WiFi over the China Mobile via a USB WiFi Dongle and downloaded some apps. Some apps I use are blocked in china (TuneIn Radio, Pandora, etc), and i'm looking for a way to have a VPN on it.
The thing is that the manufacturer of the device removed the VPN network settings, so I can't connect (or it is absent on the Android 2.3.4 ). is there a way to install some kind of VPN Client on this android? I already have a paid VPN Account and use on my apple devices.
View 2 Replies
View Related
Aug 31, 2009
I am trying to display a SpreadSheet in the Android application with auot adjustable columns and each columns should surrounded by lines.I used the Table Layout the data are displayed in the Table format but i don't know how to surround each column with lines, auto adjustment.
View 2 Replies
View Related
Oct 13, 2010
I have an object on my main.xml layout file called thefact that is TextView. I also have a string called sharefact. I want to save what text is in the TextView into the sharefact string. I can't do:
sharefact = thefact
Or anything similar to that because it would want me to convert sharefact into a textview.
View 2 Replies
View Related
Nov 19, 2010
I have a simple app I coded for android that I want to go on Blackberry too - How easy is it to get the code over to their SDK and run it working as intended? I was only wondering if anyone knew from experience. The only API's on Droid I really use are camera and face detect.
View 3 Replies
View Related
Jun 27, 2010
The way we can do it in HTML, where we have two framesets. If I click a link in one frame then only the other frame(target one) is reloaded, the one from which I clicked is not.
How this can be done in Android?
As in, Say I have a kind of taskbar/toolbar which is part of all views. Is there any way in which Activities from one "Frame" can switch but activity in other frame remains stable?
View 2 Replies
View Related
May 13, 2012
im trying to go back to stock gingerbread from ics. Waiting for the official release. I found an official stock gingerbread file but its a meT format? Can i still just put that in odin pdf and hit start and it will flash back to stock or do i need to convert? Samsung galaxy s2 skyrocket att
View 1 Replies
View Related
Jun 3, 2010
Is there any widget which would help me to create kind of admob banner or scrolling text at the top of my app?
View 6 Replies
View Related
May 14, 2010
I have tried game genie codes and maybe i am still doing something wrong so i figured i would ask if anyone knows what kind of codes work for the snesoid/how hey are enterd to work for the game.
View 4 Replies
View Related
Jul 16, 2010
What kind of ubs connector does the X10 handset use? It doesn't seems to be usb-mini or usb-micro
View 5 Replies
View Related
Aug 12, 2010
Just got my droid x and i was wondering if there was some kind of chat app for smartphones like bbm?
View 3 Replies
View Related
Sep 1, 2010
I can not get any kind of data on my phone after updating to cm 6.0 and idk if it is a verizon problem or if it was something i did?
View 2 Replies
View Related
Jun 18, 2010
Anyone know of if there are or will be any kind of cases for the Galaxy at all?
View 25 Replies
View Related
Oct 15, 2010
What kind of A-Gps is this phone using?
Is it using Garmin? or only Google Map?
View 4 Replies
View Related
Apr 26, 2010
I'm in the mood for a Good RPG or another kind of game like the old pokemon GameBoy games that you can play over an extended period. I just can't find any in the Android marketplace. Does anyone know of any good games like this?
View 6 Replies
View Related
Jun 24, 2010
From the Cnet review, it looks like the unit doesn't come with a screen protector. What kind works good with a capacitive screen? I have a Hero now, but no protector on it. But with the Droid X's monster screen, I will need one.
View 15 Replies
View Related
Feb 2, 2010
I have been looking around alot for cases and I cant seem to find one I like. I like the hard rubber kind and I saw one but the guy mentioned he got it with his window mount from verizon. I looked around and didn't seem like that mount came with a case. can anyone throw me some ideas?
View 6 Replies
View Related