Skip to main content

Posts

Showing posts with the label context menu

Context menu in android

Program to create context menu in android/Context menu in android Ø   A context menu is a  floating menu  that appears when the user performs a long-click on an element main.xml <? xml version = "1.0" encoding = "utf-8" ?> < LinearLayout xmlns:android = "http://schemas.android.com/apk/res/android"     android:orientation = "vertical"     android:layout_width = "fill_parent"     android:layout_height = "fill_parent"     > < TextView       android:layout_width = "fill_parent"     android:layout_height = "wrap_content"     android:text = "@string/hello"     /> < Button android:text = "Button" android:id = "@+id/button1" android:layout_width = "wrap_content" android:layout_height = "wrap_content" > </ Button > </ LinearLayout > Context_menu.xml <? xml version = "1.0" encoding = "utf-8&qu