6
votes
8answers
234 views

private String or public static String?

At my internship one of my colleagues gave me a hint. I want to know if this is good practice. What I was doing was creating classes that are used only for the values they contain and don't have any ...
6
votes
1answer
108 views

How to access private strings of the Android OS programmatically?

Background I would like to get all of the strings of the Android OS (including all of them) programmatically, including those that are considered private. For example, I would like to get those of ...
1
vote
1answer
61 views

Accessing website through a private address

I created java web Application and deployed it at glassfish server. I am running my website server using android phone hotspot. Any other client machine is unable to access it as it provides me with a ...
0
votes
2answers
68 views

Share private key in android development

I am developing an android app, on two machines, one at work and other at home. But when I compile and run on first machine, then goto second machine and change and compile and run Eclipse errors that ...
0
votes
1answer
59 views

Retrieve a simple string from internet in android app

I have a simple question: I have a private comunity android app that is not in the market, so my question is when i do an upgrade to the app i want to have a button that makes the users of the app ...
1
vote
2answers
125 views

Setting EditText as private field in Java code would lead to an error

Code snippets below, public class RelativeActivity extends Activity { // private Button ok_btn = (Button) findViewById(R.id.ok); // private EditText edit = (EditText) ...
1
vote
2answers
429 views

Difference between “public void onDestroy()” and “protected void onDestroy()”?

Here is a part of my code: package com.admobsdk_dfp_handler; import com.google.ads.*; import com.google.ads.doubleclick.*; import android.os.Bundle; import android.os.Handler; import ...
3
votes
5answers
319 views

public or private, does it really matter with Android variables

inside of a single activity, when defining components to be used only within that activity, what's the real difference between the following definitions: Button btnPower = null; //or private Button ...
0
votes
2answers
57 views

Can someone access private directories on rooted phones?

Can someone access the database files and/or other files of my app stores in the system's private directories? I think this can be done on rooted phones, but I am not sure. I am trying to figure ...
1
vote
3answers
143 views

Make picture available only for my Android application

I have an application which has loads of pictures. The total picture is saved in an SD card due to large number of picture. The main problem is that the pictures are available in gallery. I want a way ...
1
vote
1answer
3k views

What is the difference between getDir and getFilesDir on Android?

I would like to save a picture in Internal Storage of my app, to make it private. So I did a little research and saw 2 ways to get the directory. 1.With getDir : File dir = ...
0
votes
1answer
152 views

Doclava show private methods in docs

i am using doclava to generate docs for my Android project. i want the docs to show every single variable, member and method. The documentation of doclava states that you should pass the -hidden flag ...
0
votes
1answer
119 views

How do I program android to look for a particular network?

My application only works if it's on the campus network in order to access campus data. When running the application on public wifi or 3g network, the application will hang then force close. How do I ...
2
votes
2answers
382 views

android - is it possible to use private intents instead of global ones?

background: i've noticed that for regular activities within, it is possible for any application to open the activities of my app . question: is it possible to allow only my own app (or apps , or ...
0
votes
2answers
213 views

Hide my app contacts from user

I want to use the contacts API but for my specific application my users will most likely not want these contacts polluting their contact list. The application is targeted for delivery drivers and I ...
1
vote
3answers
189 views

Why is “Set()” function better than modifying public variable?

This one is bothering me for a while now :) Suppose we have a variable - why is writing a Set function better practice than simply modifying variable's data (and setting the variable to be public ...
2
votes
4answers
1k views

Android: make a folder on external memory private or protected

I want to make a folder on the external memory (could be on SD card) private or protected so that only my application/process can have access to that folder. Can I do this? if so please let me know? ...
0
votes
2answers
274 views

Do I need private certificate doing https in Android java

I need to retrive data from a server talking https to my Android App. I get the server certificate dynamically like this: KeyStore store = KeyStore.getInstance(KeyStore.getDefaultType()); ...
1
vote
4answers
381 views

NullPointerException when calling a private final variable in a method

I create private ArrayList<String> values;. values is assigned a value in the onCreate method (final ArrayList<String> values = new ArrayList<String>();). Another method ...
0
votes
1answer
378 views

Android : Play a video from a private application file

I'm using a videoView to display a video that I downloaded from my server. If I play the video from the sd card, it works fine using something like : ...
1
vote
2answers
2k views

write private file to internal storage

I trying to write some files on the internal storage. I saw theFileOutputStream fos = openFileOutput(FILENAME, Context.MODE_PRIVATE); on Data Storage and I understood that the file will be private to ...
3
votes
7answers
3k views

Private Android Application deployment/installation?

is it possible to create an android application that is meant only for internal use? Basically a private application not meant to be installed by non-approved phones? If so what is the basic process ...
1
vote
1answer
752 views

make private folder

When my application starts, I am creating one folder/directory and writing one file into it Now what I want is, only my application can access this folder , no other can access this Is it possible ...
6
votes
4answers
3k views

Viewing private files created by an android app

I have an xml file being written by an app that is set to MODE_PRIVATE, but I now want to read that file outside of the phone, for debugging purposes. In Eclipse, I can access other files made by the ...
1
vote
1answer
4k views

private dispatchTouchEvent?

I have a class named dot and many instances of this same class are created when the app runs. Problem is I need to be able to click on one of the instances of this class and have the clicked instance ...
5
votes
2answers
2k views

Android private fields naming guidelines are ok?

Here http://source.android.com/source/code-style.html#follow-field-naming-conventions it is stated that : "Field Names * Non-public, non-static field names start with m. * Static field names ...