AndroidAnnotations is a compile time framework that helps writing simple and clean Android code.

learn more… | top users | synonyms

0
votes
1answer
7 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 ...
2
votes
2answers
133 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 ...
4
votes
3answers
197 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
45 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
16 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
42 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
71 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
67 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
78 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
76 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
2answers
202 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
63 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
153 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
123 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; ...
0
votes
0answers
66 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
102 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
233 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
1answer
67 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
52 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
61 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
207 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
361 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
168 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
135 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
245 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
79 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
106 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
140 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
47 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
145 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
711 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> ...
1
vote
1answer
485 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
188 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
505 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
106 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
877 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
232 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
989 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
122 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
887 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
321 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
516 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: ...
0
votes
2answers
174 views

Removing observer on on destroy() android

I am developing for android using android annotations. I have a singleton observable object for which I want to add activity as an observer. Something like as follows: ...
3
votes
1answer
797 views

Android testing with Robolectric and AndroidAnnotations

I've developing application using AndroidAnnotations and want to use Robolectric for unit testing. I can't get it working though. Application and tests are placed in single project. Source is placed ...
2
votes
2answers
683 views

Rest API - how add custom headers?

I want to make POST request with custom header. I can't find information how to do this using AA Rest API - https://github.com/excilys/androidannotations/wiki/Rest%20API . Should I use ...
7
votes
2answers
408 views

Android Annotations: Annotated class Xyz_ not finding it's original (“cannot find symbol class Xyz”)

I use the latest Android Annotations 2.6 and IntelliJ IDEA. Sometimes I always keep having problem with the annotations / classpath / compilation order. Seems to occur irregularly. I had the project ...
0
votes
2answers
272 views

Rest Client - how get JSONObject as a response?

I'm following this guide - https://github.com/excilys/androidannotations/wiki/Rest%20API and I am trying skip JSON<->POJO conversion and work on pure JSONObject (or gson's JsonObject). What should ...

1 2