PopupWindow弹窗及Menu菜单的用法

王云
2023-12-01

1.在res下面创建一个menu文件夹,并新建一个xml文件作为OptionMenu的布局文件

<?xml version="1.0" encoding="utf-8"?>

<menu xmlns:android="http://schemas.android.com/apk/res/android"

xmlns:app="" target="_blank">http://schemas.android.com/apk/res-auto">

<!--showAsAction属性:always总是 never 从不 ifroom 能显示就显示 默认是nerver-->

<item android:id="@+id/blue" android:title="蓝色" app:showAsAction="never" ></item>

<item android:id="@+id/red" android:title="红色" > </item>

<item android:id="@+id/green" android:title="绿色" ></item>

</menu>

//步骤2:Activity重写onCreateOptionsMenu加载资源文件

@Override

public boolean onCreateOptionsMenu(Menu menu) {

getMenuInflater().inflate(R.menu.options_menu,menu);

return super.onCreateOptionsMenu(menu);

}

//步骤3:Activity重写onOptionsItemSelected设置事件监听

@Override

public boolean onOptionsItemSelected(MenuItem item) {

int id=item.getItemId();

switch (id){

case R.id.blue:

textView.setTextColor(Color.parseColor("#2239A2"));

break;

case R.id.green:

textView.setTextColor(Color.parseColor("#1BA233"));

break;

case R.id.red:

textView.setTextColor(Color.parseColor("#A21C31"));

break;

}

return super.onOptionsItemSelected(item);

}

为什么要写长按的点击事件?

长按注册监听事件registerForContextMenu(View view);:

该方法是Context的方法,主要用于长按事件处理,其源代码如下:

public void registerForContextMenu(View view) {

view.setOnCreateContextMenuListener(this);

}

其中setOnCreateContextMenuListener方法:public void setOnCreateContextMenuListener(OnCreateContextMenuListener l) {

if (!isLongClickable()) {

setLongClickable(true);

}

getListenerInfo().mOnCreateContextMenuListener = l;

}

registerForContextMenu(View view)

弹出菜单-实现思路

步骤1:在res下面创建一个menu文件夹,并新建一个xml文件作为PoupMenu的布局文件。

步骤2:把PopupMenu相关逻辑封装到showPopupMenu()方法中,包含PopupMenu的实例化、布局设置、显示、添加MenuItem的点击监听及响应等

步骤3:为控件设置事件监听直接调用showPopupMenu()方法

xml布局文件

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

xmlns:app="http://schemas.android.com/apk/res-auto"

xmlns:tools="http://schemas.android.com/tools"

android:layout_width="match_parent"

android:layout_height="match_parent"

tools:context=".Main2Activity"

android:gravity="center">

<TextView

android:id="@+id/popup_tv"

android:text="弹出菜单"

android:layout_width="wrap_content"

android:layout_height="wrap_content" />

</LinearLayout>

java代码

public class Main2Activity extends AppCompatActivity {

private TextView view;

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main2);

view = (TextView) findViewById(R.id.popup_tv);

view.setOnClickListener(new View.OnClickListener() {

@Override

public void onClick(View v) {

showPopupMenu();

}

});

}

 类似资料: