gpt4 book ai didi

java - Android 弹出窗口与可变文本

转载 作者:行者123 更新时间:2023-12-01 10:03:07 24 4
gpt4 key购买 nike

因此,在弹出框方面遇到了一些麻烦,对于 Android 来说是个新手,不知道如何解决这个问题。我想要一个弹出窗口,根据公共(public)变量显示特定文本,因此当单击按钮时,会检查该变量,并根据该变量的内容在 textView 中显示适当的文本。

  • 是否可以创建字符串变量,并通过一系列 if 语句将这些变量传递给 textView?

  • 我是否需要为每个 View 提供单独的布局文件,并使用 if 语句来确定将传递和弹出哪个 View ?

popup.xml

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

<TextView
android:id="@+id/text_id"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="" />

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Close"
android:id="@+id/button1"/>

</LinearLayout>

mainActivity.java

 Button pubtn = (Button)findViewById(R.id.popupOpen);
pubtn.setOnClickListener(new Button.OnClickListener(){

@Override
public void onClick(View arg0) {
LayoutInflater layoutInflater = (LayoutInflater)getBaseContext().getSystemService(LAYOUT_INFLATER_SERVICE);

View puView = layoutInflater.inflate(R.layout.popup, null);
PopupWindow puWindow = new PopupWindow(
puView,
LayoutParams.WRAP_CONTENT,
LayoutParams.WRAP_CONTENT);

Button btnExit = (Button)puView.findViewById(R.id.button1);
btnExit.setOnClickListener(new Button.OnClickListener(){

@Override
public void onClick(View v) {
puWindow.dismiss();
}});
puWindow.showAsDropDown(pubtn, 0, 0);
}});

任何有关如何解决此问题的帮助或指导将不胜感激

最佳答案

您可以使用这个示例:

LayoutInflater inflater = (LayoutInflater) YourActivity.this
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View layout = inflater.inflate(R.layout.popup_xml,
(ViewGroup) findViewById(R.id.popup_element));
popupWindow = new PopupWindow(layout, 300, 190, true);

popupText = (TextView) layout.findViewById(R.id.popupText);
popupText.setText(yourString);

关于java - Android 弹出窗口与可变文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36661775/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com