org.androidannotations.annotations.FragmentById Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of androidannotations-api Show documentation
Show all versions of androidannotations-api Show documentation
The API jar containing the annotations and the runtime helpers
/**
* Copyright (C) 2010-2016 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 org.androidannotations.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
*
* Use it on android.app.Fragment or android.support.v4.app.Fragment fields or
* methods with applicable parameters in activity classes to retrieve and inject
* a fragment.
*
*
* The annotation value should be one of R.id.* fields. If not set, the field or
* method name will be used as the R.id.* field name.
*
*
* Note: This can only inject an existing fragment, not create them.
*
*
*
* Example :
*
*
* <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
* android:layout_width="match_parent"
* android:layout_height="match_parent" >
*
* <fragment
* android:id="@+id/myFragment"
* android:name="mypackage.MyFragment_"
* android:layout_width="match_parent"
* android:layout_height="match_parent" />
* </LinearLayout>
*
*
* @EActivity(R.layout.main)
* public class MyActivity extends Activity {
*
* // all injected fragment will be the same
*
* @FragmentById
* public MyFragment myFragment;
*
* @FragmentById(R.id.myFragment)
* public MyFragment myFragment2;
*
* @FragmentById
* void singleInjection(MyFragment myFragment) {
* // do stuff
* }
*
* void multiInjection(@FragmentById MyFragment myFragment, @FragmentById(R.id.myFragment) MyFragment myFragment2) {
* // do stuff
* }
* }
*
*
*
*
*
* To use the getChildFragmentManager()
to inject the
* Fragment
, set the {@link #childFragment()} annotation parameter
* to true
. You can only do this if the annotated field is in a
* class which extends android.app.Fragment
or
* android.support.v4.app.Fragment
and the
* getChildFragmentManager()
method is available.
*
*
*
*
* Example :
*
*
* <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
* android:layout_width="match_parent"
* android:layout_height="match_parent" >
*
* <fragment
* android:id="@+id/myChildFragment"
* android:name="mypackage.MyChildFragment_"
* android:layout_width="match_parent"
* android:layout_height="match_parent" />
* </LinearLayout>
*
*
* @EFragment(R.layout.parentfragment)
* public class MyParentFragment extends Fragment {
*
* @FragmentById(childFragment = true)
* MyChildFragment myFragment;
*
* }
*
*
*
*
* @see EFragment
* @see FragmentArg
* @see FragmentByTag
*/
@Retention(RetentionPolicy.CLASS)
@Target({ ElementType.FIELD, ElementType.METHOD, ElementType.PARAMETER })
public @interface FragmentById {
/**
* The R.id.* field which is the id of the Fragment.
*
* @return the id of the Fragment
*/
int value() default ResId.DEFAULT_VALUE;
/**
* The resource name which refers to the id of the Fragment.
*
* @return the resource name of the Fragment
*/
String resName() default "";
/**
* Whether to use getChildFragmentManager()
or
* getFragmentManager()
to obtain the Fragment. Only can be
* true
when injecting into a Fragment
.
*
* @return true
to use getChildFragmentManager()
,
* false
to use getFragmentManager()
*/
boolean childFragment() default false;
}