OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MyFragment
(Results
1 - 2
of
2
) sorted by null
/development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentArguments.java
45
Fragment newFragment =
MyFragment
.newInstance("From Arguments");
53
public static class
MyFragment
extends Fragment {
57
* Create a new instance of
MyFragment
that will be initialized
60
static
MyFragment
newInstance(CharSequence label) {
61
MyFragment
f = new
MyFragment
();
/development/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentArgumentsSupport.java
47
Fragment newFragment =
MyFragment
.newInstance("From Arguments");
55
public static class
MyFragment
extends Fragment {
59
* Create a new instance of
MyFragment
that will be initialized
62
static
MyFragment
newInstance(CharSequence label) {
63
MyFragment
f = new
MyFragment
();
Completed in 1077 milliseconds