Android :: Inflating Xml Layout Generates RuntimeException
Oct 2, 2010
I'm new to Android and i'm trying to inflate a layout in xml but i get a RuntimeException. I have cut out almost everything except for my activity class and the class extending SurfaceView.
what i'm doing wrong?
CODE:........................
View 4 Replies
Jul 23, 2010
I get this exception when I try to inflate
07-22 19:15:39.903: ERROR/AndroidRuntime(3810): Caused by: java.lang.ClassCastException: android.widget.RelativeLayout
I have a base class:
public class UIBase extends RelativeLayout {}
And a more specific class:
public class Countdown extends UIBase {}
Then I try to inflate and it exceptions:
UIBase newView = (UIBase) inflater.inflate(layoutId, parent, true);
Here's the XML file:
CODE:..................
View 1 Replies
View Related
Nov 16, 2010
I've found a example on this site on how to make a subclass of the application for android.
I've created this code
package mensand.test;
class TestApp extends android.app.Application { }
Added this line to the manifest
android:name="mensand.test.TestApp"
And when i run the app it's starts with a force close message.
When i remove the line from the manifest all runs ok
View 2 Replies
View Related
Sep 18, 2009
Hi,
Is there any api on android which generates a Thumbnail image from an inputstream which is a video file?
Thank you.
View 1 Replies
View Related
Feb 21, 2012
I am using Eclipse and trying to run one of the examples. However, when I do, it generates many errors.
I am trying to test using the AlarmController.java file. Do I need to create a project with all the same names and classes within this java file? Or is there a project already created somewhere in the SDK I should be trying to run?
View 3 Replies
View Related
Feb 10, 2012
is there an easy way of identifying which application generates spam messages that appear in the notifications?
sometimes the icon gives it away but not all the time..
View 5 Replies
View Related
Mar 10, 2010
I have a code that works 99% of the time since is deploy in lots of clients, but sometimes I get the following:
CODE:..........
And on my code I have:
CODE:......
I am getting InvocationTargetException.
View 2 Replies
View Related
Aug 23, 2010
Is there a way to extend a drawable (just like how shapes work, create your own tag) and allow it to be inflated from XML? Or is drawable only for the allowed 9 types?
View 1 Replies
View Related
Mar 16, 2009
whats the exact differences between 1. LinearLayout lin = LinearLayout.inflate (ctxt, R.layout.bla, null); parent.addView(lin); and 2. LinearLayout.inflate(ctxt, R.layout.bla, lin);? Both doing the same thing, or?
I got sometimes a different behavior.
View 2 Replies
View Related
Sep 17, 2010
I'm new to Android development and I've been having an issue that I haven't been able to fix. I'm mostly using code from examples provided in the SDK so I'm not sure what's happening here. I'm simply trying to create a custom view GhostSurfaceCameraView that extends SurfaceView. Here's my class definition file GhostSurfaceCameraView.java:
CODE:............
And this is in my ghostviewscreen.xml:
CODE:............
Now in the activity I made:
CODE:........
When setContentView gets called, an exception is thrown:
CODE:.................
Why I get this error?
View 1 Replies
View Related
Sep 28, 2009
i'm running into some issues inflating layouts and i wonder whether i have something basic wrong.i have a ListView with a custom adapter etc, and of course the item View is custom too. i've been creating the item View in code, and everything works fine, including recycling them and all that. great.but i want to move the View into a resource, where all good Android views live, and weirdness is happening.in the ListView's getView(), i get my inflater and inflate the view by ID. the view itself has its own XML file. i can inflate the top view, but i can't find anything by ID, and when asked for its children, nothing comes back.are there funky rules for inflating views this way? is there a convention for how this should be done inside a ListView?
View 11 Replies
View Related
Jun 30, 2010
Let's say for instance a button is needed with a picture and a text. It would seem natural to create an xml view and then inflate it into the Button. Is this possible?
At the moment I don't need the button to look clickable or change it's color at click, but it could also be interesting to consider how this will be affected by making the inflate.
Btw, I found this one tutorial describing a solution to the same problem, but they were writing a class extending View to obtain the goal. That seems a bit overklill to me. http://kahdev.wordpress.com/2008/09/13/making-a-custom-android-button-using-a-custom-view/
View 1 Replies
View Related
Aug 16, 2010
I have the following layout in XML (splashscreen.xml):
CODE:............
When I try to execute it in Android 1.5 (executes correctly in all other versions) I get these errors:
CODE:.............
Line 5 corresponds to ImageView line. Do you have any idea why my program executes in all Android versions except 1.5?
View 1 Replies
View Related
Aug 23, 2010
my app has widgets that have an ImageView and a TextView. On the onUpdate() method of the WidgetProvider, I put a Bitmap inside the ImageView this way:
CODE:..................
setColor() method is this:
CODE:..........
The problem is that sometimes the widget throws a RuntimeException because somebody has recycled the Bitmap, and I don't know what to do.
View 2 Replies
View Related
Nov 11, 2009
I am having an issue while trying to use a GridView in a PopupWindow. On my Activity's onCreate method, I am inflating a gridview from xml as follows:
CODE:.........
Would like this GridView to popup on a button click. Also inside of my activity's onCreate,
I have:
CODE:...........
On button click, I am throwing a ClassCastException from GridView.onMeasure(int, int).
View 1 Replies
View Related
Nov 15, 2010
I'm trying to add ScoreNinja, the global high score system, to my Android game, and it works fine when I load it on my phone, but when I release it into the wild, I got crash reports saying: java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare()
Here is part of the call stack:
android.os.Handler.<init>(Handler.java:121)
android.app.Dialog.<init>(Dialog.java:99)
android.app.AlertDialog.<init>(AlertDialog.java:65)
android.app.AlertDialog.<init>(AlertDialog.java:61)....
I thought the main thread had prepare() called automatically, and if not, why would it work fine for me but not anyone else?
View 6 Replies
View Related
Jul 25, 2010
I am trying to implement my own Search using searchable, and as soon as press return after entering a query into my custom search field, I get a RuntimeException:
CODE:...............
Here is what the logCat reported:
CODE:............
(More):
CODE:..............
I have been trying to figure it out for hours. Here is my AndroidXML:
CODE:.................
View 1 Replies
View Related
Nov 19, 2010
I've an application that you can show and close several Dialogs with:
showDialog(...)
removeDialog(...)
I play a little bit with the application and when there is no any Dialog on the screen, I press the menu button and I go to the main android screen.
After a while, I enter again into my application and sometimes, I get this RuntimeException:
CODE:...........
View 2 Replies
View Related
Aug 22, 2009
I am getting the following logs when i am changing the wallpaper for Homescreen. Even i am recycling the bitmap is done when the wallpaper changes in OnWallpaperChanged(). Still i m getting the bellow error.
CODE:.........................
View 3 Replies
View Related
Dec 24, 2009
What could be the reason, if I get such a strange error?
CODE:.................
I do not get a special line in my code. How can I find anything out, where the error in my code is?
And the LogCat says all the time:
CODE:............................
View 5 Replies
View Related
Apr 30, 2009
I would like to do some tests on SlidingDrawer however i always found RuntimeException when SlidingDrawer.onMeasure is called i check the code and think the exception is caused by unspecified MeasureSpec
so i would like to ask how to setup the MeasureSpec in SlidingDrawer?
View 2 Replies
View Related
Oct 9, 2010
This code works fine if I move the findViewById call in to the Activity. Any hints as to why it doesn't work from inside the LearningView class? I've tried moving the TextView inside the com.example.LearningView tag but no joy. I'd prefer to get the TextView from within the SurfaceView subclass as I feel it's more logical to treat the TV as a "child" of the SV.
This is a contrived example I wrote to figure out the problem in a larger application, but the gist of it is the same, and the stack trace is basically the same.
For what it is worth, the findViewById call is returning null, which obviously threw NullPointerExceptions in some attempts to fix this.
As you can probably gather from my attempts I'm flying blind on this one.
Learning.java:
CODE:..........
main.xml:
CODE:..............
Stack trace:
CODE:......................
View 1 Replies
View Related
Nov 3, 2010
Posted my problem here too HERE: A beginner..Im doing a school map app.
First of all I have background with 4 buttons ( level3, level4, level5, level6) I try and click all the buttons, normally after clicking 3 of it, the next one will crash.(each level button goes into a level map, whereby clicking the room image buttons, I will enter into the gallery-imageswitcher)
I have at least 5 imageswitchers in each level maps,so that about over 20 imageswitcher galleries overall.
I did all my stuffs using DRAWABLES instead of BITMAPS.. I have tons and tons of images (because its a school map, show all the photos in my school, and all those backgrounds and imagebuttons)
I did some research, and those who have problems are those using bitmap. Some of the ways that can be solved is system.gc();, and bitmap.recycle...(not so sure how to use it though)
In my main background - starttour.java Code...
PS: I have tons of images in the app; I have at least 5 imageswitcher gallerys in each level, so that kinda adds up to over 20 imageswitchers in my app.
View 1 Replies
View Related
Feb 15, 2009
I get the following error in logcat: java.lang.RuntimeException: Binary XML file line #26: You must supply a layout_height attribute. Can you please tell me which xml file that I am missing? And it said 'binary xml', does it mean it is actually line 26 in my file? or it is line 26 in the file after it compiles to be a binary xml file?..........
View 4 Replies
View Related
Nov 8, 2010
I wrote an android app and so far it works perfect except for on one phone. It is the exact phone that I have with 2.2 on both phones and mine works perfect. The other phone is getting force close all the time but only when opening an activity that queries my image DB and tries to show a gallery. Every activity crashes in the same place, the viewimages. At first I thought it was the intent that was doing it but one of the activitys does not have the intent, it opens the images below the gallery. This works on the emulator, on my moto droid and on a few other different droids. Here is the code for the gallery and my bitmap decoder.
The error is below that.
CODE:..............
Here is the error
CODE:.....................
View 1 Replies
View Related
Aug 17, 2010
I'm calling Debug.startMethodTracing("fnord") and I'm getting a java.lang.RuntimeException: file open failed message. It looks like I'm supposed to have the android.permission.WRITE_EXTERNAL_STORAGE permission set. But how do you set that permission when you're debugging through Eclipse? Aren't permissions normally set at install time (which doesn't happen in a normal way when you're debugging)?
View 2 Replies
View Related
Sep 28, 2010
I am using MapView in my application.I ma getting "android.view.inflateException:Binary XML file line #43:Inflating Class<unknown>" Exception while loading the map second time. First Time it shows correctly
The XML file i am using shows here
The Code:.................
View 2 Replies
View Related
Jul 6, 2010
The log is as following:
CODE:..................
View 2 Replies
View Related
Jun 22, 2010
I have downloaded one open source ocr application. when i run it on the g1 phone it is working, but for the nexus one its throwing up a exception telling E/QualcommCameraHardware( 52): Invalid preview size requested: 533x310
E/AndroidRuntime(5038): java.lang.RuntimeException: setParameters failed
View 5 Replies
View Related
Sep 21, 2010
I have a listview and i inflate the first position with a layout and every other position i do
another inflation with another layout.
I can do that by checking every time in getView, but as you can imagine this is not very efficient.
Can you share me your thoughts to get that result by having this pattern? (This don't get me the correct result(cause after 4-5 positions, depending of the number of positions inflated the first time, i get the layout.inside_list_2 on other positions too.)
CODE:.....................
View 2 Replies
View Related