0
votes
3answers
61 views

findViewById inside a Static Method

I have this static method: public static void displayLevelUp(int level, Context context) { LayoutInflater inflater = (LayoutInflater) context ...
0
votes
2answers
81 views

NetworkOnMainThreadException in IntentService

I am making network calls from an IntentService but still receiving a NetworkOnMainThreadException. My understanding is that an IntentService always runs on a worker thread, so I'm suprised to see ...
0
votes
2answers
63 views

Why can't I call a Static method from another class which contains a Toast?

Before posting this I did my research, but I am struggling to understand exactly what the issue is. So here is my method in class 1: public static void scan() { for( int j=0; j< ...
0
votes
2answers
72 views

How to stack common methods for different activities

I am using new activities for ActivityButtons. So I have like 10 different activities, all of them using the same footer. In the footer, there are buttons and lots of click events. I just copy ...
8
votes
3answers
348 views

Java why is using static helper methods bad?

I'm asking because I'm trying to use a mocking framework (Mockito) which does not allow you to mock static methods. Looking into it I've found quite a few blog posts saying that you should have as few ...
0
votes
1answer
32 views

Why is public static method, DragEvent.obtain() not accessible

Can any one explain why am i not able to access DragEvent.obtain() method. As per grepcode DragEvent code, method is declared as public static. ...
1
vote
1answer
151 views

Calling static method from a (superclass) list of subclass instances

Say I have a base class A (with a virtual method called normalInit()), and 300 subclasses: A1, A2, A3, ... Each of these subclasses have a staticInit() static method, plus a normalInit() override. ...
0
votes
1answer
144 views

No enclosing instance of type ContactsXmpp is accessible?

this is the class i am using public class ContactsXmpp extends SherlockFragmentActivity { private static Context ctx; @Override public void onCreate(Bundle savedInstanceState) { ...
0
votes
2answers
157 views

How to get SharedPreferences from non-Context class and without using non-final static variables?

I need to get a reference to the shared prefs from inside an abstract class called A that does not extend anything. I cannot pass a Context object to this class to get the shared prefs because being ...
0
votes
5answers
246 views

Call a non static void from another class

I am trying to end an never ending circle. I need to call a void that is not static from another class. The reason that I do not make it static is that some things are very hard to make static. ...
0
votes
2answers
189 views

android - Pass class as parameter to access static variables

I need to pass a class so I can access its static variables. Example: Class FirstClass { static int x = 1; } Class SecondClass { static int x = 2; } I have a method in another class (which will be ...
5
votes
1answer
91 views

Is static init guaranteed NOT to run if class is not accessed

I know there are many topics and resources about this, but I'm wondering about a very specific question (and it might take a very long time to check all sources for a definite answer). I know that ...
0
votes
1answer
109 views

How to make button click from an static method in android

I have one Button "Submit", and i want to make 'submit.performclick' inside static method, i tried but i cant, help me to overcome this issue, and one more thing, inside that click action, there may ...
0
votes
1answer
53 views

is it possible to move string value from static string to non static String in android

is it possible to move string value from static string to non static String? i am trying to get String Value from static method to non static method, is it possible i tried with the following, ...
0
votes
2answers
675 views

how to call non static method from static method in android

I am facing a big problem in calling non static method from static method. This is my code Class SMS { public static void First_function() { SMS sms = new SMS(); ...
1
vote
1answer
805 views

findViewById in static method in different class

Inside on of my android fragments I have the following simple check as to whether my app runs on a tablet or not (on a tablet I have 3 views open, view 2 and 3 are not seen on a phone, only the first ...
-2
votes
4answers
834 views

How to call method in main activity from other activity?

I want to call public method in main activity from other activity. How can I do that? class MainActivity extends Activity { public void myMethod() {} } class MyActivity extends Activity { ...
0
votes
1answer
357 views

Calling a Static Method with AsyncTask/ProgressDialog of a class

So I'm relatively new to Android (and Java). I've made a class which has your usual AsyncTask with a ProgressDialog in a static method because I want to call it from multiple Activities. public class ...
-1
votes
3answers
563 views

Cannot make a static reference to the non-static method

I am receiving an error on me method to allow a class access to my DB. the error is occurring at .getReadableDatabase(). The error received is below. not sure how to fix this error. Cannot make a ...
0
votes
5answers
196 views

SharedPreferences NullPointer Exception, static and non-static method

I am trying to draw a line graph using afreechart , I have saved the x and y points already using SharedPreferences. However, when I try to get some info from sharedpreferences i got an error, i ...
0
votes
3answers
76 views

Java & Android & SharedPreferences & OOP

The function contains in the main Activity: public int checkScore(int scoreCurrent) { int maxscore = PreferenceConnector.readInteger(this, "maxscore", 0); if (scoreCurrent > ...
1
vote
1answer
304 views

replacing Fragment with a listener within this Fragment and a method in the Activity

I have a Fragment with a Button embedded inside of a FragmentActivity. When I click the button I want the Fragment to be replaced with another Fragment. The problem is: the Fragment is a inner static ...
0
votes
1answer
602 views

How to call startManagingCursor in non activity Class or in any static method to retrive data from sqlite (in android)?

DBHelper db =new DBHelper(context); Cursor result = db.weeklyMedicinesTaken(); //WeeklyMedicinesTaken is a function in DBHelper class which returns cursor containing an integer value. ...
0
votes
0answers
184 views

calling a static method of a ProgressDialog - wanting to check if it's still alive

I am calling a static method of a ProgressDialog wich extends DialogFragment. is there a way to check if it's still alive, since the user can just press the "back" btn and the DialogFragment is gone. ...
0
votes
3answers
64 views

Should a (java/android) class that has a listner implemented in the constructor have static methods which are somehow related to the listner actions?

Ok, so I'll try to make that question a little more simple. The core of this question is more about when to use static methods but after going through the bullet point theoretical concepts of what ...
4
votes
1answer
574 views

AsyncTask inside a Static method - Good Coding Practice?

I currently have a helper class to perform rudimentary AsyncTasks such as the following. I call the function from an activity as and when needed. The code seems to work fine and I haven't encountered ...
1
vote
2answers
524 views

Memory leaks android

I have a big problem with my app as it crashes often but never at the same spot. Before it was working fine but I had a method repeated in every app that checked for the language. I have decided to ...
-3
votes
1answer
528 views

Android Intent and startActivity still necessary for calling static methods?

I think I already know the answer to this question because it seems, uh, will uh a bit far fetched. But I am seriously looking for a solution. Suppose that I have an Activity, call it Bluetooth ...
0
votes
1answer
872 views

In Android, usege of ProgressDialog.show() and ProgressDialog.hide() problem during fetching data from the internet

When I define progress dialog functions such as public static void showLoadingBar(Context context) { dialog=new ProgressDialog(context); dialog.setMessage("Please wait"); ...
2
votes
1answer
774 views

Every second HttpsUrlConnection request of my static method fails on Android

I'm having a big issue with a static HTTPS connection method. Every second request fails and HttpsUrlConnection.getResponseCode() returns -1. So every second call works well, returning data as ...
4
votes
2answers
10k views

Accessing SharedPreferences through static methods

I have some information stored as SharedPreferences. I need to access that information from outsite an Activity (in from a domain model class). So I created a static method in an Activity which I only ...
3
votes
4answers
7k views

Static methods or Singletons performance-wise (Android)?

In an app with a small number of POJOs and lots of helper methods that operate on them, what's better performance-wise: to make the helper classes singletons or to make the methods static?