Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
This repository was archived by the owner on Feb 26, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
/**
* Copyright (C) 2016-2017 the AndroidAnnotations project
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed To in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package org.androidannotations.test;

import java.util.List;

import org.androidannotations.annotations.EActivity;
import org.androidannotations.annotations.ViewsById;

import android.app.Activity;
import android.widget.TextView;

@EActivity(R.layout.views_injected)
public class ViewsInjectionOrderActivity extends Activity {

List<TextView> methodInjectedViews;

@ViewsById({ R.id.my_text_view, R.id.someView })
void methodInjectedViews(List<TextView> someView) {
methodInjectedViews = someView;
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/**
* Copyright (C) 2010-2016 eBusiness Information, Excilys Group
* Copyright (C) 2016-2017 the AndroidAnnotations project
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
Expand Down Expand Up @@ -87,6 +88,13 @@ public void methodInjectedViewsNotNullAndHasTwoElements() {
assertThat(activity.methodInjectedViews).hasSize(2);
}

@Test
public void methodInjectedViewsNotNullAndHasTwoElements2() {
ViewsInjectionOrderActivity_ inOrderActivity = Robolectric.buildActivity(ViewsInjectionOrderActivity_.class).create().get();
assertThat(inOrderActivity.methodInjectedViews).isNotNull();
assertThat(inOrderActivity.methodInjectedViews).hasSize(2);
}

@Test
public void multiInjectedViewsNotNullAndHasTwoElements() {
assertThat(activity.multiInjectedViews).isNotNull();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/**
* Copyright (C) 2010-2016 eBusiness Information, Excilys Group
* Copyright (C) 2016-2017 the AndroidAnnotations project
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
Expand Down Expand Up @@ -54,6 +55,7 @@ public abstract class EComponentWithViewSupportHolder extends EComponentHolder i
private JMethod onViewChanged;
private JBlock onViewChangedBody;
private JBlock onViewChangedBodyInjectionBlock;
private JBlock onViewChangedBodyViewHolderBlock;
private JBlock onViewChangedBodyAfterInjectionBlock;
private JBlock onViewChangedBodyBeforeInjectionBlock;
private JVar onViewChangedHasViewsParam;
Expand Down Expand Up @@ -94,6 +96,13 @@ public JBlock getOnViewChangedBodyInjectionBlock() {
return onViewChangedBodyInjectionBlock;
}

public JBlock getOnViewChangedBodyViewHolderBlock() {
if (onViewChangedBodyViewHolderBlock == null) {
setOnViewChanged();
}
return onViewChangedBodyViewHolderBlock;
}

public JBlock getOnViewChangedBodyAfterInjectionBlock() {
if (onViewChangedBodyAfterInjectionBlock == null) {
setOnViewChanged();
Expand All @@ -114,6 +123,7 @@ protected void setOnViewChanged() {
onViewChanged.annotate(Override.class);
onViewChangedBody = onViewChanged.body();
onViewChangedBodyBeforeInjectionBlock = onViewChangedBody.blockVirtual();
onViewChangedBodyViewHolderBlock = onViewChangedBody.blockVirtual();
onViewChangedBodyInjectionBlock = onViewChangedBody.blockVirtual();
onViewChangedBodyAfterInjectionBlock = onViewChangedBody.blockVirtual();
onViewChangedHasViewsParam = onViewChanged.param(HasViews.class, "hasViews");
Expand Down Expand Up @@ -161,7 +171,7 @@ protected FoundViewHolder createFoundViewAndIfNotNullBlock(JFieldRef idRef, Abst
} else {
block.add(foundView.assign(findViewExpression));
}
return new FoundViewHolder(this, viewClass, foundView, getOnViewChangedBodyInjectionBlock());
return new FoundViewHolder(this, viewClass, foundView, getOnViewChangedBodyViewHolderBlock());
}

public JMethod getFindNativeFragmentById() {
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.