android 自定义窗口大小设置,android – 如何设置PopupWindow的布局和大小

我正在编写我的第一个程序来自

android,并且很难让PopupWindow按照我的意图定位和调整大小.目前,单击菜单栏上的按钮后将弹出弹出窗口.单击后我希望弹出显示集中,但是当前点击时结果如下图所示(由于< 10声誉而无法发布图像):

https://www.box.com/s/7d4qk8tqlvhiog7576mc

Java Popup方法和监听器:public void showPopup(View add){

PopupWindow popup = new PopupWindow(this);

setContentView(R.layout.add);

popup.setBackgroundDrawable(null);

popup.showAtLocation(add, Gravity.CENTER,0,0);

popup.setFocusable(true);

popup.setOutsideTouchable(true);

View hideAdd = findViewById(R.id.add_task);

hideAdd.setVisibility(View.INVISIBLE);

}

public boolean onOptionsItemSelected(MenuItem menuItem){

switch(menuItem.getItemId()){

case R.id.add_task:

View addTaskView = findViewById(R.id.add_task);

showPopup(addTaskView);

return true;

default:

return false;

}

}

}

添加布局Xml:

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:gravity="center"

android:orientation="horizontal">

android:id="@+id/title_text"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:text="@string/task_title"

android:textSize="25sp"

android:textColor="@android:color/holo_blue_bright"/>

android:layout_width="match_parent"

android:layout_height="1dp"

android:background="@android:color/holo_blue_bright"/>

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:hint="@string/task_prompt">

任何帮助将不胜感激.

最佳答案 有一种称为自定义对话框…例如:

>您可以设计布局并将其设置为对话框..Dialog dialog=new Dialog();

dialog.setContentView(the layout u designed here);

>将活动转换为对话框..检查我对这个post的回答..

..所以对话有无穷无尽的可能性..

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值