
Highly customizable, performance driven, home screen replacement for Android 4.0+Nova Launcher Prime unlocks the following features in Nova Launcher:
Drawer Groups:
Folders in App Drawer
Drawer Groups:
Folders in App Drawer

@OverrideWe call registerForContextMenu(View V) method to tell the activity that the view is going to have a context menu.
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
txt=(TextView)findViewById(R.id.txt);
registerForContextMenu(txt);
}
@OverrideWhen you make a long click on the text view the context menu will appear like this:
public void onCreateContextMenu(ContextMenu menu,View v,ContextMenuInfo info)
{
menu.setHeaderTitle("Context Menu");
menu.add("Item");
}
@Override
public boolean onContextItemSelected(MenuItem item)
{
txt.setText(item.getTitle());
return true;
}
Copyright © 2009 Gadget Review. Powered by Blogger..
Blogger Templates created by Deluxe Templates