Tagged Questions
The manifest presents essential information about the application to the Android system
94
votes
5answers
54k views
Android - disable landscape mode?
How can I disable landscape mode for some of the views in my Android app?
28
votes
3answers
6k views
What happens if the minSdkVersion is lower than the targetSdkVersion?
I am getting the warning:
Attribute minSdkVersion (3) is lower than the project target API level (8)
How will this affect my app?
28
votes
3answers
27k views
How to parse the AndroidManifest.xml file inside an .apk package
This file appears to be in a binary XML format. What is this format and how can it be parsed programmatically (as opposed to using the aapt dump tool in the SDK)?
This binary format is not ...
19
votes
2answers
2k views
Suppress AndroidManifest.xml minSdkVersion related warning
As recomended here http://developer.android.com/guide/practices/screens_support.html for compatibility reasons my AndroidManifest.xml contains this:
<uses-sdk android:minSdkVersion="3" ...
17
votes
2answers
4k views
Get AndroidManifest.xml Content in code
i need to know how to parse the AndroidManifest.xml file in order to get the Application Version Number in code
android:versionName
15
votes
2answers
9k views
How to view AndroidManifest.xml from APK file?
Is it possible to view Androidmanifest.xml file?
I just changed the extension for apk file to zip. This zip file contains Androidmanifest.xml file. But I cant view the Androidmanifest.xml coding. Its ...
15
votes
2answers
36k views
How to add manifest permission to android application?
I am trying to access http link using HttpURLConnection to download a file, but getting this warning in LogCat
WARN/System.err(223): java.net.SocketException: Permission denied (maybe missing ...
13
votes
2answers
2k views
User versionName value of AndroidManifest.xml in code
The AndroidManifest.xml contains the version name of the application, something like
android:versionName="1.0"
Now the question - is it somehow possible to access this version name in the source ...
12
votes
4answers
3k views
Android Launcher label vs. activity title
This question has been asked before - but with no satisfying answer at all! So I'm trying it again.
I want to give my application launcher icon (the one that is displayed on the startscreen!) a ...
12
votes
5answers
12k views
Android intent filter for a particular file extension?
I want to be able to download a file with a particular extension from the 'net, and have it passed to my application to deal with it, but I haven't been able to figure out the intent filter. The ...
11
votes
3answers
1k views
Detect my app's own android:versionCode at run time
Is there a way for my app to know the android:versionCode from AndroidManifest.xml or do I have to create a separate constant in one of my classes?
9
votes
4answers
737 views
Load Activity and/or Application Logo Programmatically from Manifest
I am trying to load the logo associated with the current activity and/or its parent application from the definition in the manifest. This technique has already worked successfully on loading the title ...
9
votes
2answers
2k views
Android Widget Bitmap Sizes
Hallo,
I am writing a widget, but am unsure what size bitmap to use as a background for each screen resolution/density.
According to the Android Developer App Widgets tutorial:
To find your minimum ...
9
votes
2answers
4k views
How to get the build/version number of your android application?
I need to figure out how to get or make a build number for my android application. I need the build number to display in the UI. Do I have to do something with androidmanifest.xml?
8
votes
1answer
1k views
Android 'debuggable' default value
I am trying to get application's debuggable attribute value from code:
packageInfo = context.getPackageManager().getPackageInfo(packageName, 0);
int flags = ...
8
votes
3answers
6k views
main cannot be resolved or is not a field
This error occurs in setContentView line in this code snippet:
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
...
8
votes
2answers
1k views
What's the “dot” for when registering an Activity
I'm kind of a noob at programming for the Android OS. I noticed in the books I have been reading that the authors have placed a "dot" in front of the activity name when registering their activities ...
8
votes
2answers
618 views
Two searchable.xml activities in one AndroidManifest.xml
I have an Android app which has a few different activities for browsing articles and images downloaded from RSS.
I'd like to be able to offer to hook up the search button to the Search dialog, using ...
7
votes
3answers
162 views
AutoStart Application not working properly
I am having a Simple AutoStart Application with TimerTask implementation, that works fine in almost many devices. The problem is that it is not working in Samsung Galaxy Y(2.3.6) and DELL XCD35(2.2). ...
7
votes
2answers
117 views
Manifest and supported devices showed in android market
Is there a tool out there which could test my android manifest to see which devices are supported by the android market with given settings? I hope that there is some way other than uploading every ...
7
votes
2answers
12k views
Android “single top” launch mode and onNewIntent method
I read in the Android documentation that by setting my Activity's launchMode property to singleTop OR by adding the FLAG_ACTIVITY_SINGLE_TOP flag to my Intent, that calling startActivity(intent) would ...
6
votes
2answers
184 views
Read ApplicationManifest of Android Application (apk) using .NET
I´m working on an application (developed with .NET Framework) that manages Android Application packages (apk) and the program has to read the ApplicationManifest.xml that resides inside the apk. ...
6
votes
2answers
7k views
How to fix “Error generating final archive: duplicate entry: AndroidManifest.xml”
I put two projects into Eclipse, called Project1 and Project2.
Project1 is independent, but Project2 must be dependent to Project1.
When I build the Project2, the error msg comes like this: Error ...
6
votes
1answer
5k views
Android: HTTPClient
I was trying http-cleint tutorials from svn.apache.org. While running the application I am getting the following error in console.
[2010-04-30 09:26:36 - HalloAndroid] ActivityManager: ...
5
votes
1answer
232 views
How to make android:versionName in AndroidManifest.xml changed automatically in eclipse?
I want to change android:versionName each time when I release apk.
Are there any eclipse plugin or some other ways that can help it automatically change along with my code's compilation?
For ...
5
votes
7answers
225 views
Android: leaving an app with home button and returning to a different activity when going through a long press on the home button
I have an app which has uses bluetooth, and should not be accessible if the bluetooth is turned off on the device.
the way I chose to implement this is as follows:
created a dispatcher activity ...
5
votes
2answers
393 views
Associating certain file extension to my android application
I'm having trouble associating my custom file extension to my android application that I am developing. In my android manifest file I have the following:
<data android:scheme="file" ...
5
votes
2answers
423 views
intent filter for ical URLs
I'm trying to register my Android app as a handler for iCal URLs. To do this I set intent filters in my Manifest for the webcal:// pseudo protocol and for HTTP URLs using the text/calendar MIME type ...
5
votes
1answer
465 views
Android theme not being set
I have a theme that refuses to be applied to activities - none of the styles are applied. If I don't supply the layout_width/layout_height attributes for <Button> it also gets a runtime error, ...
5
votes
2answers
286 views
How to start app from Android browser, when I type in “myapp://” in address bar
I need the browser to start my app whenever I enter the "myapp://blah.com/a?b=1&c=2" in the browser. I have searched a lot on this topic, but non of the answers really helped me. Could you please ...
5
votes
2answers
1k views
How to support extra large screens in Android?
According to this doc page, Android 2.3 supports extra large screen sizes (xlarge), and you can declare that your apps supports this size by adding android:xlargeScreens="true" in the ...
5
votes
2answers
1k views
adjustPan not preventing keyboard from covering EditText
I'm trying to create a pretty basic chat screen with a ListView displaying the text and an EditText at the bottom and a "Send" button to the right of the EditText. Everything is functional, but when I ...
5
votes
2answers
1k views
How do I get multiple icons to launch different activities in one application?
I have an application with two activities and I'd like to be able to have two icons appear in the launcher, each launching the respective activity within the app.
Specifically, I want one icon to ...
5
votes
1answer
5k views
Android app with multiple activities
I have a very simple game that consists of only one activity, and I want to add a title screen.
If the title screen is another activity, what changes do I need to make to my manifest file to make the ...
5
votes
3answers
1k views
Android Run application from last Activity
I have an application with several Activities.
My A Activity has the Manifest Intent filter parameters: action.MAIN
and category.LAUNCHER. after its being loaded I call Activity B and
finish() A since ...
4
votes
2answers
105 views
How to find out what hardware requirements my Android application has?
hope my question doesn't sound much awkward. I have Android application which runs fine on many Android phones. However, I've just found out that on my friend's Samsung Galaxy Mini (S5570) it won't ...
4
votes
3answers
95 views
How do I read the Android Manifest without using PackageManager?
I am working on an Android application that requires more information than what is available in the PackageManager (such as intent filters). I have created a parser for reading the AndroidManifest ...
4
votes
2answers
80 views
What's the correct way to specify an intent action in Manifest File?
The tutorial says to use android.appwidget.action.APPWIDGET_UPDATE in the action element within the XML intent-filter.
However,
this is the value of a String constant ACTION_APPWIDGET_UPDATE in
...
4
votes
1answer
114 views
How make 10 inch tablet code compatable to 7 inch tablet in android
I have the source code for 10 inch tablet,how i make it suitable to 7 inch tablet without changing the layouts etc,
Thanks in adavance.
4
votes
3answers
88 views
Weird Behaviour of ListView with CheckBox
I am having a CheckBox above the ListView having Checkbox items in it. So when I check the Checkbox I apply notifyDataSetChanged() to check all the check all the items of the List. So at that time I ...
4
votes
3answers
292 views
Intent filter is not working for calling screen
I am designing a custom calling screen to show information, such as the caller's address book info, on screen during the phone conversation.
My app will begin when the user presses the call button by ...
4
votes
2answers
59 views
Is it possible to add some item in the context menus of android (system menu)
When I enter some text and press and hold on it then context menu is presented with items like cut,copy,select text and so on.
Is there any way to add my own custom item to this context menu ? I do ...
4
votes
1answer
46 views
Is it possible to include/import code to the Android Manifest?
I am working on a package for other android applications to use, and when they import the .jar, they also need to add a reasonable chunk of permissions and such to the android manifest.
Is it ...
4
votes
1answer
98 views
Hooking into android Contacts menu
I want to have a menu item display when a user is viewing a contact in the android contact app. I thought you had to define a intent-filter and it would show up, but it is not working like I thought ...
4
votes
1answer
262 views
Best practices for maintaining Android application release
Typically when you build and debug Android application, you would have debuggable=true in manifest and you would sign application with development key.
When it is time to release your application you ...
4
votes
3answers
187 views
How can I support my Android application for multiple Android stores?
I have recently started selling my Android application on the Google Android Market, and implemented their application licensing scheme to prevent against unauthorized use of my application. I am now ...
4
votes
1answer
417 views
Android Intent-Filter for http address
I am trying to intercept a couple different links with my app, and I am having trouble with the intent-filter data parameters to do it.
Here are the 2 types of links that I want to intercept
...
4
votes
3answers
289 views
Extremely basic: Switching between Activities (Android)
Hey, I realize there are tutorials on this topic, and even previous questions posed. However, I've read several tutorials and some answers and I am still having trouble. Clearly, I must not be the ...
4
votes
1answer
341 views
Android application control flow?
Hey Folks,
I am very new to Android application development. Just started Hello world android application yesterday.
I was wondering whether there will be any control flow in the android ...
4
votes
3answers
2k views
Android EditText Transparent Background
I want to have a transparent background for Android EditText widget. How is that possible?