編輯:關於Android編程
在上一節,我們已經知道了在按MENU鍵的時候,如何顯示選項菜單。但是,除了選項菜單,你也可以顯示一個上下文菜單。上下文菜單通常是和activity中的組件相關聯的。當用戶長按一個組件的時候,它的上下文菜單就會被觸發。例如,用戶長按一個Button,一個上下文菜單就有可能被顯示。
如果想要把一個組件與一個上下文菜單聯系在一起,就需要在組件上面調用setOnCreateContextMenuListener()。
下面展示如何顯示一個上下文菜單(Context Menu)。
1. 使用之前的工程,修改main.xml。
[html]
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />
<Button
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Click and hold on it" />
</LinearLayout>
2. 在MenusActivity.java中添加一些代碼。
[java]
public class MenusActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Button btn = (Button) findViewById(R.id.button1);
btn.setOnCreateContextMenuListener(this);
}
@Override
public void onCreateContextMenu(ContextMenu menu, View view,
ContextMenuInfo menuInfo)
{
super.onCreateContextMenu(menu, view, menuInfo);
CreateMenu(menu);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
......
}
@Override
public boolean onOptionsItemSelected(MenuItem item)
{
return MenuChoice(item);
}
private void CreateMenu(Menu menu)
{
......
}
private boolean MenuChoice(MenuItem item)
{
......
}
}
3. 按F11在模擬器上面調試。當點擊Button並維持一段時間後,上下文菜單顯出出來了。
在上面的例子中,我們調用了button的setOnCreateContextMenuListener()方法,是button與上下文菜單關聯到了一起。
當上下文菜單中了某一項被點擊時,onContextItemSelected()這個方法就會被觸發。
注意,上下文菜單中的快捷鍵是不起作用的。如果想要使快捷鍵起作用,需要調用setQuertyMode()方法。
[java]
private void CreateMenu(Menu menu)
{
menu.setQwertyMode(true);
MenuItem mnu1 = menu.add(0, 0, 0, "Item 1");
{
mnu1.setAlphabeticShortcut('a');
mnu1.setIcon(R.drawable.ic_launcher);
}
......
}
TabLayout是Android 的Material Design包中的一個控件,可以和V4包中的ViewPager搭配產生一個聯動的效果。這裡我自定義了一
今天來寫一個關於圖片請求的小例子,我們用NetworkImageView這個類來實現,這個類可以直接用在xml控件中,當作imageview,而且內部原理也是使用的Ima
在android中有五種保存數據的方法,分別是: Shared Preferences Store private primitive data in key-val
本例主要實現在APP中解析GML數據並顯示GML,地理標記語言(外語全稱:Geography MarkupLanguage、外語縮寫:GML),它由開放式地理信息系統協會