New fragment sample code for ListFragment and context menus.

Change-Id: I97c64fa4c4140c81c7d0147026ba558ba1a76d2e
This commit is contained in:
Dianne Hackborn
2010-06-12 10:17:58 -07:00
parent ac3f5485c8
commit 9c5d122a98
7 changed files with 212 additions and 16 deletions

View File

@@ -0,0 +1,75 @@
/*
* Copyright (C) 2010 The Android Open Source Project
*
* 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.example.android.apis.app;
import com.example.android.apis.R;
import android.app.Activity;
import android.app.Fragment;
import android.os.Bundle;
import android.util.Log;
import android.view.ContextMenu;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import android.view.ContextMenu.ContextMenuInfo;
/**
* Demonstration of displaying a context menu from a fragment.
*/
public class FragmentContextMenu extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Create the list fragment and add it as our sole content.
ContextMenuFragment content = new ContextMenuFragment();
openFragmentTransaction().add(android.R.id.content, content).commit();
}
public static class ContextMenuFragment extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View root = inflater.inflate(R.layout.fragment_context_menu, container, false);
registerForContextMenu(root.findViewById(R.id.long_press));
return root;
}
@Override
public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) {
super.onCreateContextMenu(menu, v, menuInfo);
menu.add(Menu.NONE, R.id.a_item, Menu.NONE, "Menu A");
menu.add(Menu.NONE, R.id.b_item, Menu.NONE, "Menu B");
}
@Override
public boolean onContextItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.a_item:
Log.i("ContextMenu", "Item 1a was chosen");
return true;
case R.id.b_item:
Log.i("ContextMenu", "Item 1b was chosen");
return true;
}
return super.onContextItemSelected(item);
}
}
}

View File

@@ -46,9 +46,15 @@ public class FragmentLayout extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// This layout varies depending on the screen size.
setContentView(R.layout.fragment_layout);
}
/**
* This is a secondary activity, to show what the user has selected
* when the screen is not large enough to show it all in one activity.
*/
public static class DialogActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
@@ -63,7 +69,7 @@ public class FragmentLayout extends Activity {
}
DialogFragment dialog = new DialogFragment();
this.openFragmentTransaction().add(android.R.id.content, dialog).commit();
openFragmentTransaction().add(android.R.id.content, dialog).commit();
dialog.setText(getIntent().getIntExtra("text", -1));
}
}

View File

@@ -0,0 +1,56 @@
/*
* Copyright (C) 2010 The Android Open Source Project
*
* 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.example.android.apis.app;
import com.example.android.apis.R;
import com.example.android.apis.Shakespeare;
import android.app.Activity;
import android.app.ListFragment;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.ListView;
/**
* Demonstration of using ListFragment to show a list of items.
*/
public class FragmentList extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Create the list fragment and add it as our sole content.
ExampleListFragment list = new ExampleListFragment();
openFragmentTransaction().add(android.R.id.content, list).commit();
}
public static class ExampleListFragment extends ListFragment {
@Override
public void onReady(Bundle savedInstanceState) {
super.onReady(savedInstanceState);
setListAdapter(new ArrayAdapter<String>(getActivity(),
android.R.layout.simple_list_item_1, Shakespeare.TITLES));
}
@Override
public void onListItemClick(ListView l, View v, int position, long id) {
Log.i("FragmentList", "Item clicked: " + id);
}
}
}

View File

@@ -41,7 +41,7 @@ public class FragmentMenu extends Activity {
FragmentTransaction ft = openFragmentTransaction();
mFragment1 = findFragmentByTag("f1");
if (mFragment1 == null) {
mFragment1 = new Menu1Fragment();
mFragment1 = new MenuFragment();
ft.add(mFragment1, "f1");
}
mFragment2 = findFragmentByTag("f2");
@@ -83,7 +83,7 @@ public class FragmentMenu extends Activity {
* have a UI (it does not implement onCreateView), but it could also
* have one if it wanted.
*/
public static class Menu1Fragment extends Fragment {
public static class MenuFragment extends Fragment {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);