OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:fragment_container
(Results
1 - 10
of
10
) sorted by null
/development/samples/training/basic/FragmentBasics/src/com/example/fragments/
MainActivity.java
32
// the
fragment_container
FrameLayout. If so, we must add the first fragment
33
if (findViewById(R.id.
fragment_container
) != null) {
49
// Add the fragment to the '
fragment_container
' FrameLayout
51
.add(R.id.
fragment_container
, firstFragment).commit();
78
// Replace whatever is in the
fragment_container
view with this fragment,
80
transaction.replace(R.id.
fragment_container
, newFragment);
/external/robolectric/src/test/resources/res/layout/
fragment_activity.xml
5
android:id="@+id/
fragment_container
"
/development/samples/training/basic/FragmentBasics/res/layout/
news_articles.xml
18
android:id="@+id/
fragment_container
"
/packages/apps/DeskClock/res/layout/
timer_alert_full_screen.xml
18
android:id="@+id/
fragment_container
"
/packages/apps/DeskClock/src/com/android/deskclock/timer/
TimerAlertFullScreen.java
47
final View view = findViewById(R.id.
fragment_container
);
70
// Add the fragment to the '
fragment_container
' FrameLayout
72
.add(R.id.
fragment_container
, timerFragment, FRAGMENT).commit();
128
ViewGroup viewContainer = (ViewGroup)findViewById(R.id.
fragment_container
);
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
FragmentActivityTest.java
79
int
fragment_container
= R.id.dynamic_fragment_container;
local
80
activity.getSupportFragmentManager().beginTransaction().add(
fragment_container
, fragment).commit();
92
assertEquals(fragmentState.containerId,
fragment_container
);
98
int
fragment_container
= R.id.dynamic_fragment_container;
local
99
activity.getSupportFragmentManager().beginTransaction().add(
fragment_container
, fragment).commit();
/frameworks/base/docs/html/training/basics/fragments/
fragment-ui.jd
86
android:id="@+id/
fragment_container
"
115
// the
fragment_container
FrameLayout
116
if (findViewById(R.id.
fragment_container
) != null) {
132
// Add the fragment to the '
fragment_container
' FrameLayout
134
.add(R.id.
fragment_container
, firstFragment).commit();
174
// Replace whatever is in the
fragment_container
view with this fragment,
176
transaction.replace(R.id.
fragment_container
, newFragment);
communicating.jd
156
// Replace whatever is in the
fragment_container
view with this fragment,
158
transaction.replace(R.id.
fragment_container
, newFragment);
/frameworks/base/docs/html/guide/components/
fragments.jd
343
fragmentTransaction.add(R.id.
fragment_container
, fragment);
445
// Replace whatever is in the
fragment_container
view with this fragment,
447
transaction.replace(R.id.
fragment_container
, newFragment);
455
layout container identified by the {@code R.id.
fragment_container
} ID. By calling {@link
[
all
...]
/frameworks/base/docs/html/guide/topics/ui/
actionbar.jd
[
all
...]
Completed in 477 milliseconds