am 026c82b1: Doc: Fixed a code sample to use standard methods. Also some formatting tweaks.
* commit '026c82b1916a9e2b48b9ff62ffeb935d63935a68': Doc: Fixed a code sample to use standard methods. Also some formatting tweaks.
This commit is contained in:
@@ -1126,8 +1126,8 @@ android.widget.SpinnerAdapter} by using {@link android.widget.ArrayAdapter} impl
|
|||||||
uses a string array as the data source:</p>
|
uses a string array as the data source:</p>
|
||||||
|
|
||||||
<pre>
|
<pre>
|
||||||
SpinnerAdapter mSpinnerAdapter = ArrayAdapter.createFromResource(this, R.array.action_list,
|
SpinnerAdapter mSpinnerAdapter = ArrayAdapter.createFromResource(this,
|
||||||
android.R.layout.simple_spinner_dropdown_item);
|
R.array.action_list, android.R.layout.simple_spinner_dropdown_item);
|
||||||
</pre>
|
</pre>
|
||||||
|
|
||||||
<p>The {@link android.widget.ArrayAdapter#createFromResource createFromResource()} method takes
|
<p>The {@link android.widget.ArrayAdapter#createFromResource createFromResource()} method takes
|
||||||
@@ -1179,10 +1179,13 @@ mOnNavigationListener = new OnNavigationListener() {
|
|||||||
public boolean onNavigationItemSelected(int position, long itemId) {
|
public boolean onNavigationItemSelected(int position, long itemId) {
|
||||||
// Create new fragment from our own Fragment class
|
// Create new fragment from our own Fragment class
|
||||||
ListContentFragment newFragment = new ListContentFragment();
|
ListContentFragment newFragment = new ListContentFragment();
|
||||||
FragmentTransaction ft = openFragmentTransaction();
|
FragmentTransaction ft = getSupportFragmentManager().beginTransaction();
|
||||||
|
|
||||||
// Replace whatever is in the fragment container with this fragment
|
// Replace whatever is in the fragment container with this fragment
|
||||||
// and give the fragment a tag name equal to the string at the position selected
|
// and give the fragment a tag name equal to the string at the position
|
||||||
|
// selected
|
||||||
ft.replace(R.id.fragment_container, newFragment, strings[position]);
|
ft.replace(R.id.fragment_container, newFragment, strings[position]);
|
||||||
|
|
||||||
// Apply changes
|
// Apply changes
|
||||||
ft.commit();
|
ft.commit();
|
||||||
return true;
|
return true;
|
||||||
@@ -1210,7 +1213,8 @@ public class ListContentFragment extends Fragment {
|
|||||||
@Override
|
@Override
|
||||||
public void onAttach(Activity activity) {
|
public void onAttach(Activity activity) {
|
||||||
// This is the first callback received; here we can set the text for
|
// This is the first callback received; here we can set the text for
|
||||||
// the fragment as defined by the tag specified during the fragment transaction
|
// the fragment as defined by the tag specified during the fragment
|
||||||
|
// transaction
|
||||||
super.onAttach(activity);
|
super.onAttach(activity);
|
||||||
mText = getTag();
|
mText = getTag();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user