如何利用PopupWindow实现弹出菜单并解决焦点获取以及与软键盘冲突问题 - 海 子...

原帖地址:http://www.cnblogs.com/dolphin0520/p/3153501.html

           如何利用PopupWindow实现弹出菜单并解决焦点获取以及与软键盘冲突问题

  在android中有时候可能要实现一个底部弹出菜单,此时可以考虑用PopupWindow来实现。下面就来介绍一下如何使用PopupWindow实现一个弹出窗。

  主Activity代码:

public void onCreate(Bundle savedInstanceState)
{
super .onCreate(savedInstanceState);
setContentView(R.layout.main);
// 得到弹出菜单的view,login_setting_popup是弹出菜单的布局文件
View view = getLayoutInflater().inflate(R.layout.login_setting_popup, null );
// 初始化弹出菜单
popWindow = new PopupWindow(view, WindowManager.LayoutParams.FILL_PARENT,WindowManager.LayoutParams.WRAP_CONTENT, false );
// 设置可以获取焦点,否则弹出菜单中的EditText是无法获取输入的
popWindow.setFocusable( true );
// 这句是为了防止弹出菜单获取焦点之后,点击activity的其他组件没有响应
popWindow.setBackgroundDrawable( new BitmapDrawable());
// 防止虚拟软键盘被弹出菜单遮住
popWindow.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
// 在底部显示
popWindow.showAtLocation( this,Gravity.BOTTOM, 0, 0 );
}

  login_setting_popup.xml:

<? xml version="1.0" encoding="utf-8" ?>
< LinearLayout
xmlns:android ="http://schemas.android.com/apk/res/android"
android:layout_width
="match_parent"
android:layout_height
="match_parent"
android:orientation
="vertical"
android:background
="#eeeeee" >

< LinearLayout
android:layout_width ="fill_parent"
android:layout_height
="wrap_content"
android:orientation
="horizontal"
android:layout_marginLeft
="20dp"
android:layout_marginRight
="30dp" >

< TextView
android:layout_width ="0dp"
android:layout_height
="fill_parent"
android:layout_weight
="0.2"
android:textSize
="12sp"
android:gravity
="center_vertical"
android:textColor
="@android:color/black"
android:text
="服务器地址" >
</ TextView >

< EditText
android:id ="@+id/login_setting_adderss_et"
android:layout_width
="0dp"
android:layout_height
="wrap_content"
android:layout_weight
="0.8" >
</ EditText >

</ LinearLayout >

< LinearLayout
android:layout_width ="fill_parent"
android:layout_height
="wrap_content"
android:orientation
="horizontal"
android:layout_marginLeft
="20dp"
android:layout_marginRight
="30dp" >

< TextView
android:layout_width ="0dp"
android:layout_height
="fill_parent"
android:layout_weight
="0.2"
android:textSize
="12sp"
android:textColor
="@android:color/black"
android:gravity
="center_vertical"
android:text
="GPS" >
</ TextView >

< RadioGroup
android:layout_width ="0dp"
android:layout_height
="wrap_content"
android:orientation
="horizontal"
android:layout_weight
="0.8" >

< RadioButton
android:id ="@+id/open_gps_rb"
android:layout_height
="wrap_content"
android:layout_width
="wrap_content"
android:textSize
="12sp"
android:textColor
="@android:color/black"
android:checked
="true"
android:text
="打开" >
</ RadioButton >

< RadioButton
android:id ="@+id/close_gps_rb"
android:layout_height
="wrap_content"
android:layout_width
="wrap_content"
android:textSize
="12sp"
android:layout_marginLeft
="20dp"
android:textColor
="@android:color/black"
android:text
="关闭" >
</ RadioButton >
</ RadioGroup >


</ LinearLayout >
</ LinearLayout >

  这样就可以实现一个底部弹出菜单了。但是在用PopupWindow实现底部弹出菜单的时候要注意几个问题:

  1)如果弹出菜单中有EditText这种输入控件,如果不给PopupWindow设置可获取焦点的话,EditText是无法获取输入的。

  2)一定要设置 虚拟软键盘随需要更改屏幕显示内容的大小,否则虚拟软键盘会被底部弹出菜单遮挡住。

  3)如果设置了PopupWindow可获取焦点的话,此时会遇到一个问题就是当PopupWindow中的控件比如EditText获取焦点之后,点击PopupWindow之外的控件是不会有响应的,如果用setBackgroundDrawable(new BitmapDrawable())进行设置的话,则不会出现这种情况。


本文链接:http://www.cnblogs.com/dolphin0520/p/3153501.html,转载请注明。

智能网联汽车的安全员高级考试涉及多个方面的专业知识,包括但不限于自动驾驶技术原理、车辆传感器融合、网络安全防护以及法律法规等内容。以下是针对该主题的一些核心知识解析: ### 关于智能网联车安全员高级考试的核心内容 #### 1. 自动驾驶分级标准 国际自动机工程师学会(SAE International)定义了六个级别的自动驾驶等级,从L0到L5[^1]。其中,L3及以上级别需要安全员具备更高的应急处理能力。 #### 2. 车辆感知系统的组成与功能 智能网联车通常配备多种传感器,如激光雷达、毫米波雷达、摄像头和超声波传感器等。这些设备协同工作以实现环境感知、障碍物检测等功能[^2]。 #### 3. 数据通信与网络安全 智能网联车依赖V2X(Vehicle-to-Everything)技术进行数据交换,在此过程中需防范潜在的网络攻击风险,例如中间人攻击或恶意软件入侵[^3]。 #### 4. 法律法规要求 不同国家和地区对于无人驾驶测试及运营有着严格的规定,考生应熟悉当地交通法典中有关自动化驾驶部分的具体条款[^4]。 ```python # 示例代码:模拟简单决策逻辑 def decide_action(sensor_data): if sensor_data['obstacle'] and not sensor_data['emergency']: return 'slow_down' elif sensor_data['pedestrian_crossing']: return 'stop_and_yield' else: return 'continue_driving' example_input = {'obstacle': True, 'emergency': False, 'pedestrian_crossing': False} action = decide_action(example_input) print(f"Action to take: {action}") ``` 需要注意的是,“同学”作为特定平台上的学习资源名称,并不提供官方认证的标准答案集;建议通过正规渠道获取教材并参加培训课程来准备此类资格认证考试
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值