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
Expand Up @@ -56,7 +56,7 @@ public boolean validate(Element element, AnnotationElements validatedElements) {

IsValid valid = new IsValid();

validatorHelper.enclosingElementHasEActivity(element, validatedElements, valid);
validatorHelper.enclosingElementHasEActivityOrEFragment(element, validatedElements, valid);

validatorHelper.isNotPrivate(element, valid);

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
/**
* Copyright (C) 2010-2012 eBusiness Information, Excilys Group
*
* 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 com.googlecode.androidannotations.test15;

import android.app.Fragment;
import android.content.Intent;

import com.googlecode.androidannotations.annotations.EFragment;
import com.googlecode.androidannotations.annotations.OnActivityResult;

@EFragment(R.layout.views_injected)
public class AwaitingResultFragment extends Fragment {

private static final int FIRST_REQUEST = 11;
private static final int SECOND_REQUEST = 22;
private static final int THIRD_REQUEST = 33;

@OnActivityResult(FIRST_REQUEST)
void onResult() {
}

@OnActivityResult(SECOND_REQUEST)
void onResultWithData(Intent intentData) {
}

@OnActivityResult(SECOND_REQUEST)
void onActivityResultWithResultCodeAndData(int result, Intent intentData) {
}

@OnActivityResult(SECOND_REQUEST)
void onActivityResultWithDataAndResultCode(Intent intentData, int result) {
}

@OnActivityResult(THIRD_REQUEST)
void onResultWithIntResultCode(int resultCode) {
}

@OnActivityResult(THIRD_REQUEST)
void onResultWithIntegerResultCode(Integer resultCodeInteger) {
}

}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.