Questions tagged [android-applicationinfo]

ApplicationInfo class contains information about an Android application, corresponding to the information in the application manifest.

Information you can retrieve about a particular application. This corresponds to information collected from the AndroidManifest.xml's <application> tag.

See ApplicationInfo reference.

140 questions
0
votes
1 answer

When database Table is created in android application?

I want to know the answer of this question because of, in one of my interview, interviewer asked to me this question. When database Table is created..? Option:- On application launch. when inserting data. can any one explain me when the data base…
AndroidMob
  • 101
  • 1
  • 11
0
votes
2 answers

In android studio, I want to compare the values entered in a Edit text fields to the DB

i am having a sign up page and getting username and password through edit text fields and storing them in a database without ID,now i need to compare these username and password stored in the database to that of the edit texts in another activity…
0
votes
1 answer

RaspberryPiBeacon Android detection App

I am building an Android beacon detection application, I am using my raspberryPi as a ibeacon, I followed the commands from this link. I am having some trouble detecting the beacon with my code,I am using the altbeacon library. I am guessing it has…
0
votes
2 answers

Update SQLite Database Android Application

I have an android Quote application in which I have used SQLite Database for storing quotes. I have launched the first version of the application with this DatabaseHelper. public class DataBaseHandler extends SQLiteOpenHelper { private…
0
votes
1 answer

Handling application activities if OS kills the app

I have an app up and running in Play store,i have an issue where android OS kills my app. Scenario/Steps : 1) Open app, move to any screen. 2) Minimise the app by clicking HOME button. 3) Open several other apps.(say 14 to 15 apps). 4) And now…
user2056563
  • 600
  • 2
  • 12
  • 37
0
votes
1 answer

Can i run my code of API level 7 i.e eclair in android studio?

I want to make changes in my old version code that is in API level 7 I need to add navigation sliding bar like google play store has and add FAB button in it My question is Q-1) If I add this FAB to my old code will my app crash? Q-2) Is there any…
0
votes
2 answers

How to get all apps in App Drawer?

I use this to open app from package name startActivity(getPackageManager().getLaunchIntentForPackage("packagename")); Many apps in android cannot be opened, because they are system package, not apps. These packages are not openable e.g. V/sys﹕…
CL So
  • 3,647
  • 10
  • 51
  • 95
0
votes
1 answer

Retain Android Application info after crash

I created a custom application class to keep global informations of my app. I need to get those informations back after my application restarts from a crash. I don't need to store those informations in disk because is just info from the user current…
jonathanrz
  • 4,206
  • 6
  • 35
  • 58
0
votes
1 answer

Keep a Service started at BOOT running even if Application stopped

I am working on a app that during boot time starts an activity that logs in to my server (needs an activity to log in through facebook) using a service (initiated with startService). This service establishes XMPP listeners and does nothing after…
0
votes
1 answer

Build an android app on Windows Device

I have an Android app build using Ionic Framework. Now, how to deploy and test that android app on Windows phone (what tools are to be used and steps followed)..
0
votes
1 answer

Get an Activity's Title in Android

I'm looking for a way to retrieve an activity's title in Android Lollipop. What I mean is not the process name or even the app's name, but the title that is given to the activity when it is open. For example, when you navigate to…
0
votes
1 answer

Phonegap with Android XML

I'm working on a android application I would like to create a application for android using phone gap. Is this possible? can I create a front end design in Android XML and back end controller functions in phonegap and make it an app in android…
0
votes
1 answer

Make a android app maps marker

Hello I want to know how it could make an android application of markers (warnings ) in a map, for example radar warnings, notices of free parkings... where people can get and put that information in a same map. Thank you very much.
0
votes
1 answer

SSO for android app with zendesk

I need some help with the Single Sign On for android app with Zendesk. It uses the JSON Web Tokens and I do not have any ideas how to implement those in my android project. The Zendesk team have provided some sample jwt in different languages but I…
0
votes
3 answers

System application in Android

How exactly Android determines if an application is a system application with root privilege? I know that for such applications, ApplicationInfo.FLAG_SYSTEM will be enabled, and those applications must declare shared user id as "android.uid.system"…
darthvading
  • 909
  • 2
  • 11
  • 25