AndroidAnnotations is a compile time framework that helps writing simple and clean Android code.
1
vote
1answer
20 views
AndroidAnnotations how to add init code after onCreate
If I have an activity defined as:
@EActivity(R.layout.activity_login)
public class LoginActivity extends Activity
This will create the onCreate() method for me, but I have extra init code that I ...
0
votes
0answers
29 views
How to implement SearchView (ActionBarSherlock) using android annotations?
I successfully implemented search view with action bar sherlock but just for curiosity, how can I do that using Android Annotations?
@Override
public boolean onCreateOptionsMenu(Menu menu) {
...
1
vote
1answer
19 views
Change @Rest rootUrl at runtime with AndroidAnnotations
I'm using a rest service with AndroidAnnotations, configured like so:
@Rest(rootUrl = "http://192.168.1.48:8080/stuff/services/rest/StuffService/",
converters = ...
0
votes
1answer
112 views
AndroidAnnotations Nothing Generated, Empty Activity
I am trying to create a project using AndroidAnnotations in Android Studio. When I build and run the project, everything seems to compile fine, yet I get nothing but a blank activity for the app. In ...
3
votes
1answer
83 views
+50
AndroidAnnotations processing fails in IntelliJ because R.java isn't generated
I think there's some problem with IntelliJ when it generates the R.java file, which leads to a problem in AndroidAnnotations because it can't resolve the resource id for my layout.
Here's my ...
0
votes
1answer
20 views
Android Annotations and MonkeyTalk?
I just tried to update my project which uses Android Annotations to include the MonkeyTalk agent. However, as soon as I switch the project to an AspectJ project, all my Android Annotations references ...
5
votes
2answers
411 views
ClassNotFoundException on AndroidAnnotations generated classes since update to ADT 22
This project worked wonders before updating to ADT22. I already lost a day because of not knowing I had to download Build Tools, and I'm afraid I'm going to lose another one because of this.
When I ...
6
votes
3answers
387 views
Android Studio: Use AndroidAnnotations
So I wanted to try the new Android Studio and imported my eclipse projects (I generated a gradle build file). Worked pretty good.
The only library which does not seem to work is AndroidAnnotations.
...
0
votes
0answers
56 views
Android Annotations
I'm a newbie in Android development and I had an issue when working with annotations. I added dependencies to Maven:
<!-- Android annotations and AA API dependecies start -->
...
0
votes
2answers
24 views
Android Annotations EViewGroup unable to recognize EActivity in Eclipse
I have a class set up as an EViewGroup. In it, I'm trying to reference another Activity set up as an EActivity. For some reason, the import isn't resolving, but it resolves fine if I reference the ...
0
votes
1answer
46 views
OnClickListeners not firing when Fragment initiated
I have exhausted all efforts on trying to figure out this problem. I am building an app with facebook login. I am using Android Facebook SDK 3.0 and the process works flawlessly. The problem comes ...
0
votes
1answer
83 views
Android Annotation - Null pointer Exception on methode init of the generated class
I just start a new Android project, with the Android Annotation Library.
Android Annotation
I've got two Activity : StartScreen who contains a button "information" who start a seconde Activity ...
0
votes
1answer
73 views
Why The value for annotation attribute Rest.rootUrl must be a constant expression?
Im using Android Annotations Framework, specially for Rest Integration.
I have the following code.
An interface for Host configuration
public interface Host {
public String URL = ...
0
votes
0answers
94 views
ViewGroup injection with AndroidAnnotation
I'm implementing an ActionBar on my Activities. I'm trying to do this as a AndroidAnnotaions @EViewGroup component, but for some reason I cannot see the component in my Activities. The project ...
0
votes
1answer
86 views
androidannotations2.7.1 - AndroidManifest.xml file contains the original component
I am having trouble configuring androidannotation, just downloaded androidannotations-bundle-2.7.1.zip.
I have a LoginActivity that makes use of @EActivity annotation and after building I am getting ...
0
votes
3answers
238 views
Unable to execute dex: Multiple dex files define Lorg/apache/maven/artifact/Artifact
I have an Android project with Robolectric.
My application related classes are placed in src/main/java and test related classes in src/test/java.
I have these test dependencies in my pom.xml
...
1
vote
1answer
70 views
AndroidAnnotations- execute method directly after a specific @ViewById and before others @ViewById
I'd like to know if it's possible to execute a methode directly after a specific @ViewById and before others @ViewById.
@ViewById
CostumView view1;
@ViewById
ListView list;
void myMethod(){
...
0
votes
2answers
163 views
TabHost nullpointer exception in android 2.2
I'm trying to use a tabhost with 4 widgets, I've tested this on android 4.2 and it works like a charm, however on android 2.2 it gives me a nullpointerexception when I change tabs
I know there is a ...
0
votes
1answer
128 views
AndroidAnnotations: @Rest error converting Json after export
I have these classes:
public class OfferList {
public List<Offer> offers;
}
public class Offer {
public String offer_id;
public String group_id;
public String n_hours;
...
1
vote
0answers
72 views
Show dialog while using Android Annotation
In my Activity called TestAPIActivity_, there's a click event to display a dialog:
@Click(R.id.test_account_edit_avatar_btn)
void editAvatar() {
pickDialog = ...
0
votes
0answers
117 views
Android Annotations generated classes could not be found during maven build
I have quite the same problem as described in this question Maven + AndroidAnnotations generated but not reachable classes.
Looks like there is some problem with plugins execution order, because ...
3
votes
2answers
256 views
Maven + AndroidAnnotations generated but not reachable classes
Alright.
I'm attempting to create a project which is perfectly build able by using maven, and maven only.
Currently I'm facing this issue of classes being generated, and working fine, as long as ...
1
vote
2answers
73 views
java.lang.ClassNotFoundException with android annotations for classes with underscore/derived classes
I'm using android annotations and I can compile my project properly and deploy it into my phone from eclipse. However, when I export the app, it gives me a black screen and an this exception:
...
0
votes
2answers
56 views
Android Annotations @UiThread race conditions?
@UiThread
void foo() {
...some animations...
};
@UiThread
void bar() {
xyz();
};
@UiThread
void xyz() {
foo();
};
Can i get in trouble if i use many of these nested @UiThread methods in ...
0
votes
1answer
64 views
How to cancel a @Background task with AndroidAnnotations
My use case is that whenever an user types something an EditText, the input data is used for performing operations on the background. These operations might take long enough to cause an ANR. ...
0
votes
2answers
220 views
Gson serialization error class com.activeandroid.DatabaseHelper declares multiple JSON fields named mContext
The error im getting is "java.lang.IllegalArgumentException: class com.activeandroid.DatabaseHelper declares multiple JSON fields named mContext"
I am using AndroidAnnotations RestClient to pull data ...
0
votes
3answers
532 views
Gradle build failing due to androidannotations plugin
I am integrating andoirdannotations into a gradle build process into a generic android project. When I attempt to build the project with the addition of apply plugin: 'androidannotations I get the ...
1
vote
1answer
188 views
Android-Annotations and inheritance
i am having trouble with android-annotations and inheritance:
@EFragment(R.layout.fragment_foo)
public class TestBaseFragment {
@AfterViews
public void afterTestBaseFragmentViews() {
}
}
...
0
votes
2answers
149 views
Android Annotations @AfterViews called 3 times
I'm using Android Annotations and my method annotated with @AfterViews is called 3 times. I debugged the generated class and i figure that these 3 methods are invoked but i dont know why.
@Override
...
0
votes
2answers
253 views
Android @RestService injection via androidannotations results into nullPointerException
I am gettin null pointer exception on this line wsresult = restClientInterface.skuska(); for restClientInterface. Here is my sample:
import ...
0
votes
1answer
82 views
Processing AndroidAnnotations with Maven fails, if not using the FQPN but import statement of a class instead
Processing AndroidAnnotations with Maven (3.0.3) fails, if not using the FQPN but an import statement of a class instead:
This fails:
Note the difference in using the import vs. FQPN in the code, ...
1
vote
1answer
113 views
robotium and android annotations
I'm trying to test an activity including annotations from android-annotations 2.7 like @EActivity, @ViewById, etc. Every test fails because of an NoClassDefFoundError. Has anyone a working example how ...
1
vote
1answer
149 views
Android : Saripaar Validation Library. Need to set error message from strings.xml
I am using the the Saripaar validation library https://github.com/ragunathjawahar/android-saripaar to validate one of the forms.
The library is pretty useful as it avoids a lot of boilerplate code for ...
0
votes
1answer
48 views
AndroidAnnotations + cwac endless integration
I'm using the amazing AndroidAnnotations framework and now trying to do infinite scrolling with cwac-endless lib. The problem is the fact the I need to subclass my Adapter to EndlessAdapter wich ...
1
vote
1answer
154 views
AndroidAnnotations in CursorAdapter
I am developing for android using android annotations but I don't unterstand how to use it with CursorAdapters.
There is already a example for BaseAdapters, but if I add @EBean to a class that ...
2
votes
2answers
764 views
Building project with android annotations via Maven
I try to make my project with Android annotations build with Maven.
Here is my build section:
<build>
<finalName>${project.artifactId}-${project.version}</finalName>
...
2
votes
1answer
536 views
ClassNotFoundException using AndroidAnnotations
I trying to use AndroidAnnotaions, but getting ClassNotFoundException error in my project.
For testing purposes, I created a new project with one Activity and I still getting the error.
My files:
...
1
vote
1answer
203 views
Duplicated classes in Intellij IDEA when using Android Annotations
I'm using Intellij IDEA and Android Annotations in my android project. How can I avoid this little annoying thing when I have to delete manually autogenerated classes before rebuilding project?
This ...
1
vote
1answer
541 views
POST request with Android Annotation REST Service
I am using Android Annotation in my project and trying to send POST request through following code, however there is something wrong in following code as I am not getting response as expected:
...
0
votes
0answers
109 views
What happens after limit of connections is reached in a Jetty HttpClient used in an Android app?
I have a client that constantly talks to a server via http using android-annotations's RestClient.
Every time the app is open for a long time and lots of requests have been made, new http requests ...
9
votes
2answers
947 views
Integrating AndroidAnnotation with Intellij IDEA 12
I can't configure my IDE (Intellij IDEA 12) to work with AndroidAnnotations (http://androidannotations.org/) previous configurations screenshots differ from the new ide that jetbrains just released. ...
2
votes
1answer
238 views
How to handle configuration change in android annotation.(Rotation of screen)
I am using Android annotation.There is a progress dialog but when i am rotating the screen (land to port) . The progress dialog dismiss and showing these error's in log cat.
Activity ...
0
votes
0answers
91 views
How do you select text in an EditText with a null keylistener?
I have an EditText that when clicked on presents a datepicker dialog for you to select a date. When you select a date, it changes the value in the EditText to match what you selected. I am ...
1
vote
2answers
1k views
java.lang.ArrayStoreException: sun.reflect.annotation.TypeNotPresentExceptionProxy after moving to Android Annotations v.2.7
I've got problems with building my project in eclipse after moving to Android Annotations v.2.7, at the same time maven build is ok. Here is stacktrace from eclipse Error log:
Error
Mon Nov 05 ...
0
votes
1answer
63 views
Performing data loading unitl succesfull or user break
In my app I performing loading data from web and then displaying it to user. Before loading data app shows progress dialog. I have problem if user locks phone in the middle of loading operation, or ...
0
votes
3answers
131 views
“error: Unexpected error” during maven build with Android Anotations
I have problem with building project with android anotations (v.2.6) using maven, with eclipse all works just fine. Here is some project and error details:
build configuration snippet from pom:
...
12
votes
2answers
2k views
Spring Rest Template usage causes EOFException
I'm receiving java.io.EOFException's when using Spring REST template on Android.
The stacktrace cause reads like this:
Caused by: java.io.EOFException
at ...
2
votes
1answer
937 views
Android Annotation
It's now been around 5-6 month since I am working on android. Gone through few points and still in the process of learning. Few days back I came to know about android annotations. Great way to reduce ...
1
vote
1answer
335 views
ClassNotFoundException in IDEA with AndroidAnnotations
I'm trying to add AndroidAnnotations to my maven/idea project. Here is what I have now:
Manifest
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="ua.avtopoisk"
...
1
vote
2answers
533 views
Android Fragment support , java.lang.NoSuchMethodException: Fragment(Context,AttributeSet)
I try to use fragments with AndroidAnnotations and maven.
It worked with Android 4.0+ , but then I tried to make it work with Android 2.3.3 and I had to use the support-v4 maven library:
...


