本文介绍了在Android的弹出窗口中设置自定义布局的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的弹出窗口有问题.我想用自己的布局创建弹出窗口.这是代码:
I have a problem with popup window. I want to create popup window with my own layout.This is code:
public class PopupWindowView extends PopupWindow{
PopupWindow popup;
boolean click = true;
LayoutParams params;
RelativeLayout mainLayout;
TextView tv;
LinearLayout layout;
ImageView chooseFlag;
public void createPopupWindow(Activity act){
popup = new PopupWindow(act);
chooseFlag = (ImageView) act.findViewById(R.id.login_choose_flag);
mainLayout = (RelativeLayout) act.findViewById(R.id.login_layout);
tv = new TextView(act);
layout = new LinearLayout(act);
//layout = (LinearLayout) findViewById(R.id.popuplayout);
chooseFlag.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
if (click) {
int[] values = new int[2];
v.getLocationOnScreen(values);
popup.showAtLocation(mainLayout, Gravity.NO_GRAVITY, 10, 10);
popup.update(values[0], values[1], 300, 80);
click = false;
} else {
popup.dismiss();
click = true;
}
}
});
params = new LayoutParams(LayoutParams.WRAP_CONTENT,
LayoutParams.WRAP_CONTENT);
layout.setOrientation(LinearLayout.VERTICAL);
tv.setText("Hi this is a sample text for popup window");
layout.addView(tv, params);
popup.setContentView(layout);
}
}
这是我要在弹出窗口中设置的布局:
and this is layout which I want to set in my popup window:
<?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"
>
<LinearLayout
android:id="@+id/popuplayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/patient_button_bg">
</LinearLayout>
</LinearLayout>
在我的课堂上,我不能使用findbyid
方法,因为这不是Activity.如何在班级的弹出窗口中设置自己的布局?
In my class I can't use findbyid
method because this is not Activity. How I can set my own layout in popup widow in my class?
这是我得到错误的堆栈跟踪:
this is stack trace where I get error:
03-01 09:48:48.761: E/AndroidRuntime(16776): FATAL EXCEPTION: main
03-01 09:48:48.761: E/AndroidRuntime(16776): java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first.
03-01 09:48:48.761: E/AndroidRuntime(16776): at android.view.ViewGroup.addViewInner(ViewGroup.java:3337)
03-01 09:48:48.761: E/AndroidRuntime(16776): at android.view.ViewGroup.addView(ViewGroup.java:3208)
03-01 09:48:48.761: E/AndroidRuntime(16776): at android.view.ViewGroup.addView(ViewGroup.java:3188)
03-01 09:48:48.761: E/AndroidRuntime(16776): at android.widget.PopupWindow.preparePopup(PopupWindow.java:969)
03-01 09:48:48.761: E/AndroidRuntime(16776): at android.widget.PopupWindow.showAtLocation(PopupWindow.java:840)
03-01 09:48:48.761: E/AndroidRuntime(16776): at android.widget.PopupWindow.showAtLocation(PopupWindow.java:813)
03-01 09:48:48.761: E/AndroidRuntime(16776): at pl.asseco.amms.mobile.tools.PopupWindowView$1.onClick(PopupWindowView.java:44)
03-01 09:48:48.761: E/AndroidRuntime(16776): at android.view.View.performClick(View.java:3558)
03-01 09:48:48.761: E/AndroidRuntime(16776): at android.view.View$PerformClick.run(View.java:14152)
03-01 09:48:48.761: E/AndroidRuntime(16776): at android.os.Handler.handleCallback(Handler.java:605)
03-01 09:48:48.761: E/AndroidRuntime(16776): at android.os.Handler.dispatchMessage(Handler.java:92)
03-01 09:48:48.761: E/AndroidRuntime(16776): at android.os.Looper.loop(Looper.java:137)
03-01 09:48:48.761: E/AndroidRuntime(16776): at android.app.ActivityThread.main(ActivityThread.java:4514)
03-01 09:48:48.761: E/AndroidRuntime(16776): at java.lang.reflect.Method.invokeNative(Native Method)
03-01 09:48:48.761: E/AndroidRuntime(16776): at java.lang.reflect.Method.invoke(Method.java:511)
03-01 09:48:48.761: E/AndroidRuntime(16776): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:790)
03-01 09:48:48.761: E/AndroidRuntime(16776): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:557)
03-01 09:48:48.761: E/AndroidRuntime(16776): at dalvik.system.NativeStart.main(Native Method)
编辑使用弹出窗口的活动:
EditActivity which use popup:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_login);
getActionBar().hide();
mainMenuGenerator = new MainMenuGenerator();
mainMenuGenerator.generateMainMenu(this);
mainMenuGenerator.hideIcons();
popup = new PopupWindowView();
popup.createPopupWindow(this);
}
推荐答案
尝试以下代码:
private void showSortPopup(final Activity context, Point p)
{
// Inflate the popup_layout.xml
LinearLayout viewGroup = (LinearLayout) context.findViewById(R.id.llSortChangePopup);
LayoutInflater layoutInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View layout = layoutInflater.inflate(R.layout.sort_popup_layout, viewGroup);
// Creating the PopupWindow
changeSortPopUp = new PopupWindow(context);
changeSortPopUp.setContentView(layout);
changeSortPopUp.setWidth(LinearLayout.LayoutParams.WRAP_CONTENT);
changeSortPopUp.setHeight(LinearLayout.LayoutParams.WRAP_CONTENT);
changeSortPopUp.setFocusable(true);
// Some offset to align the popup a bit to the left, and a bit down, relative to button's position.
int OFFSET_X = -20;
int OFFSET_Y = 95;
// Clear the default translucent background
changeSortPopUp.setBackgroundDrawable(new BitmapDrawable());
// Displaying the popup at the specified location, + offsets.
changeSortPopUp.showAtLocation(layout, Gravity.NO_GRAVITY, p.x + OFFSET_X, p.y + OFFSET_Y);
// Getting a reference to Close button, and close the popup when clicked.
Button close = (Button) layout.findViewById(R.id.close);
close.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
changeSortPopUp.dismiss();
}
});
}
这篇关于在Android的弹出窗口中设置自定义布局的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!