Java Code Examples for android.widget.ListView#setOnCreateContextMenuListener()
The following examples show how to use
android.widget.ListView#setOnCreateContextMenuListener() .
These examples are extracted from open source projects.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source Project: mobile-manager-tool File: MusicLoveListFragment.java License: MIT License | 6 votes |
@Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View rootView = inflater.inflate(R.layout.music_listview, container, false); mListView = (ListView) rootView.findViewById(android.R.id.list); mListView.setOnCreateContextMenuListener(this); mListView.setOnItemClickListener(this); musicList.addAll(MusicDBHelper.getFavoriteMusicList(getActivity())); listAdapter = new MusicListAdapter(getActivity(), musicList, 1); mListView.setAdapter(listAdapter); registerMessage(); return rootView; }
Example 2
Source Project: mobile-manager-tool File: MusicAllListFragment.java License: MIT License | 6 votes |
@Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View rootView = inflater.inflate(R.layout.music_listview, container, false); mListView = (ListView) rootView.findViewById(android.R.id.list); mListView.setOnCreateContextMenuListener(this); mListView.setOnItemClickListener(this); listAdapter = new MusicListAdapter(getActivity(), musicList, 1); mListView.setAdapter(listAdapter); new Thread(new Runnable() { @Override public void run() { loadMusic(); } }).start(); return rootView; }
Example 3
Source Project: android File: MisUbicaciones.java License: GNU General Public License v2.0 | 6 votes |
@Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View view = inflater.inflate(R.layout.mis_ubicaciones, container, false); listaUbicaciones = new ArrayList<>(); adapter = new UbicacionAdapter(getActivity(), R.layout.item_ubicacion, listaUbicaciones); ListView lvListaUbicaciones = (ListView) view.findViewById(R.id.lvListaUbicaciones); lvListaUbicaciones.setAdapter(adapter); lvListaUbicaciones.setOnItemClickListener(this); lvListaUbicaciones.setOnCreateContextMenuListener(this); registerForContextMenu(lvListaUbicaciones); return view; }
Example 4
Source Project: android File: MisUbicaciones.java License: GNU General Public License v2.0 | 6 votes |
@Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View view = inflater.inflate(R.layout.mis_ubicaciones, container, false); listaUbicaciones = new ArrayList<>(); adapter = new UbicacionAdapter(getActivity(), R.layout.item_ubicacion, listaUbicaciones); ListView lvListaUbicaciones = (ListView) view.findViewById(R.id.lvListaUbicaciones); lvListaUbicaciones.setAdapter(adapter); lvListaUbicaciones.setOnItemClickListener(this); lvListaUbicaciones.setOnCreateContextMenuListener(this); registerForContextMenu(lvListaUbicaciones); return view; }
Example 5
Source Project: YiBo File: MyStatusesActivity.java License: Apache License 2.0 | 6 votes |
private void bindEvent() { Button btnBack = (Button)this.findViewById(R.id.btnBack); btnBack.setOnClickListener(new GoBackClickListener()); Button btnOperate = (Button) this.findViewById(R.id.btnOperate); btnOperate.setVisibility(View.VISIBLE); btnOperate.setText(R.string.btn_home); btnOperate.setOnClickListener(new GoHomeClickListener()); ListView lvMicroBlog = (ListView)this.findViewById(R.id.lvMicroBlog); lvMicroBlog.setOnItemClickListener(new MicroBlogItemClickListener(this)); MicroBlogContextMenuListener contextMenuListener = new MicroBlogContextMenuListener(lvMicroBlog); lvMicroBlog.setOnCreateContextMenuListener(contextMenuListener); lvMicroBlog.setOnScrollListener(new StatusScrollListener()); }
Example 6
Source Project: styT File: FJActivity.java License: Apache License 2.0 | 5 votes |
/** * Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.fj); toolbar = (android.support.v7.widget.Toolbar) findViewById(R.id.toolbar); // 初始化Toolbar控件 setSupportActionBar(toolbar); bn_add = (Button) findViewById(R.id.bn_add2); bn_clear = (Button) findViewById(R.id.bn_clear2); bn_hc = (Button) findViewById(R.id.bn_fj); list = (ListView) findViewById(R.id.list2); bn_add.setOnClickListener(this); bn_clear.setOnClickListener(this); bn_hc.setOnClickListener(this); IntentFilter intentFilter = new IntentFilter(); intentFilter.addAction(THIS_ACTION); registerReceiver(br, intentFilter); FileList.curpath = Environment.getExternalStorageDirectory().getAbsolutePath(); //FileList.filter = ".*.gif$"; FileList.broadcastAction = THIS_ACTION; initAdapter(); sp = PreferenceManager.getDefaultSharedPreferences(this); list.setOnCreateContextMenuListener(new OnCreateContextMenuListener() { @Override public void onCreateContextMenu(ContextMenu p1, View p2, ContextMenu.ContextMenuInfo p3) { // TODO: Implement this method p1.add(0, 0, 0, "移除该图片"); } }); }
Example 7
Source Project: android-pdk File: MyBoardsActivity.java License: Apache License 2.0 | 5 votes |
@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_my_boards); setTitle("My Boards"); _boardsAdapter = new BoardsAdapter(this); _listView = (ListView) findViewById(R.id.listView); _listView.setAdapter(_boardsAdapter); _listView.setOnCreateContextMenuListener(new View.OnCreateContextMenuListener() { @Override public void onCreateContextMenu(ContextMenu menu, View v, ContextMenu.ContextMenuInfo menuInfo) { MenuInflater inflater = getMenuInflater(); inflater.inflate(R.menu.context_menu_boards, menu); } }); myBoardsCallback = new PDKCallback() { @Override public void onSuccess(PDKResponse response) { _loading = false; myBoardsResponse = response; _boardsAdapter.setBoardList(response.getBoardList()); } @Override public void onFailure(PDKException exception) { _loading = false; Log.e(getClass().getName(), exception.getDetailMessage()); } }; _loading = true; }
Example 8
Source Project: aedict File: DictEntryListActions.java License: GNU General Public License v3.0 | 5 votes |
public DictEntryListActions register(final ListView lv) { lv.setOnCreateContextMenuListener(AndroidUtils.safe(activity, new View.OnCreateContextMenuListener() { public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) { final int position = ((AdapterContextMenuInfo) menuInfo).position; final DictEntry ee = (DictEntry) lv.getAdapter().getItem(position); register(menu, ee, position); } })); return this; }
Example 9
Source Project: coolreader File: BookshelfActivity.java License: MIT License | 5 votes |
public void init() { resolver = getContentResolver(); bookList = DbDataOperation.getBookInfo(resolver); lvBookshelf = (ListView)findViewById(R.id.lvBookshelf); fileBrowser = (FileBrowser)findViewById(R.id.filebrowser); fileBrowser.setOnFileBrowserListener(this); lvBookshelf.setOnItemClickListener(this); ll=(RelativeLayout)findViewById(R.id.content); adapter = new CustomAdapter(); lvBookshelf.setAdapter(adapter); lvBookshelf.setOnCreateContextMenuListener(new OnCreateContextMenuListener() { public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) { AdapterContextMenuInfo info = (AdapterContextMenuInfo) menuInfo; bookPosition = info.position; menu.add(Menu.NONE,R.id.menu_open,0,"打开"); menu.add(Menu.NONE, R.id.menu_del, 1, "删除 " ); menu.add(Menu.NONE, R.id.menu_des, 1, "详细 " ); } }); titleTextV=(TextView)findViewById(R.id.profile_header_title); titleTextV.setText("本地文件"); backImageV=(ImageView)findViewById(R.id.profile_header_back); backImageV.setOnClickListener(new OnClickListener(){ public void onClick(View arg0) { // TODO Auto-generated method stub ll.setVisibility(View.INVISIBLE); } }); }
Example 10
Source Project: YiBo File: HotStatusesActivity.java License: Apache License 2.0 | 5 votes |
private void bindEvent() { Button btnBack = (Button)this.findViewById(R.id.btnBack); btnBack.setOnClickListener(new GoBackClickListener()); Button btnOperate = (Button) this.findViewById(R.id.btnOperate); btnOperate.setVisibility(View.VISIBLE); btnOperate.setText(R.string.btn_home); btnOperate.setOnClickListener(new GoHomeClickListener()); ListView lvMicroBlog = (ListView)this.findViewById(R.id.lvMicroBlog); lvMicroBlog.setOnItemClickListener(new MicroBlogItemClickListener(this)); MicroBlogContextMenuListener contextMenuListener = new MicroBlogContextMenuListener(lvMicroBlog); lvMicroBlog.setOnCreateContextMenuListener(contextMenuListener); }
Example 11
Source Project: YiBo File: StatusSubscribeActivity.java License: Apache License 2.0 | 5 votes |
private void bindEvent() { Button btnBack = (Button)this.findViewById(R.id.btnBack); btnBack.setOnClickListener(new GoBackClickListener()); Button btnOperate = (Button) this.findViewById(R.id.btnOperate); btnOperate.setVisibility(View.VISIBLE); btnOperate.setText(R.string.btn_home); btnOperate.setOnClickListener(new GoHomeClickListener()); ListView lvMicroBlog = (ListView)this.findViewById(R.id.lvMicroBlog); lvMicroBlog.setOnItemClickListener(new MicroBlogItemClickListener(this)); MicroBlogContextMenuListener contextMenuListener = new MicroBlogContextMenuListener(lvMicroBlog); lvMicroBlog.setOnCreateContextMenuListener(contextMenuListener); }
Example 12
Source Project: stynico File: FJActivity.java License: MIT License | 4 votes |
/** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.fj); StatusBarUtil.setColor(this, getResources().getColor(R.color.colorPrimary)); toolbar = (android.support.v7.widget.Toolbar) findViewById(R.id.toolbar); // 初始化Toolbar控件 setSupportActionBar(toolbar); // 用Toolbar取代ActionBar //toolbar.setTitleTextColor(getResources().getColor(R.color.text_font_white));//标题颜色 //toolbar.setSubtitleTextColor(getResources().getColor(R.color.text_font_white));//副标题颜色 // 设置导航按钮监听 //overridePendingTransition(R.anim.out_to_right, R.anim.in_from_left); bn_add = (Button)findViewById(R.id.bn_add2); bn_clear = (Button)findViewById(R.id.bn_clear2); bn_hc = (Button)findViewById(R.id.bn_fj); list = (ListView)findViewById(R.id.list2); bn_add.setOnClickListener(this); bn_clear.setOnClickListener(this); bn_hc.setOnClickListener(this); IntentFilter intentFilter=new IntentFilter(); intentFilter.addAction(THIS_ACTION); registerReceiver(br, intentFilter); FileList.curpath = Environment.getExternalStorageDirectory().getAbsolutePath(); //FileList.filter = ".*.gif$"; FileList.broadcastAction = THIS_ACTION; initAdapter(); sp = PreferenceManager.getDefaultSharedPreferences(this); list.setOnCreateContextMenuListener(new OnCreateContextMenuListener(){ @Override public void onCreateContextMenu(ContextMenu p1, View p2, ContextMenu.ContextMenuInfo p3) { // TODO: Implement this method p1.add(0, 0, 0, "移除该图片"); } }); }
Example 13
Source Project: YiBo File: GroupTabChangeListener.java License: Apache License 2.0 | 4 votes |
@Override public void onTabChange(View v, int which) { ListView lvUser = (ListView) context.findViewById(R.id.lvUser); Paging<?> paging = null; boolean isInit = false; switch (which) { case 0: SocialGraphListAdapter sgAdapter = context.getSgAdapter(); if (sgAdapter == null) { sgAdapter = new SocialGraphListAdapter(context, context.getCurrentAccount(), context.getSocialGraphType()); context.setSgAdapter(sgAdapter); new SocialGraphTask(sgAdapter, context.getUser()).execute(); isInit = true; } paging = sgAdapter.getPaging(); lvUser.setAdapter(sgAdapter); lvUser.setOnItemClickListener(socialGraphItemClickListener); lvUser.setOnCreateContextMenuListener(null); break; case 1: GroupListAdapter groupAdapter = context.getGroupAdapter(); if (groupAdapter == null) { groupAdapter = new GroupListAdapter(context, context.getCurrentAccount()); context.setGroupAdapter(groupAdapter); groupContextMenuListener = new GroupContextMenuListener(groupAdapter); new GroupTask(groupAdapter).execute(); isInit = true; } paging = groupAdapter.getPaging(); lvUser.setAdapter(groupAdapter); lvUser.setOnItemClickListener(groupItemClickListener); lvUser.setOnCreateContextMenuListener(groupContextMenuListener); break; } if (isInit) { return; } if (paging.hasNext()) { context.showMoreFooter(); } else { context.showNoMoreFooter(); } }
Example 14
Source Project: CSipSimple File: MessageFragment.java License: GNU General Public License v3.0 | 3 votes |
@Override public void onActivityCreated(Bundle savedInstanceState) { super.onActivityCreated(savedInstanceState); setHasOptionsMenu(true); ListView lv = getListView(); lv.setOnCreateContextMenuListener(this); }