我试图创建一个弹出窗口,只需按一下按钮即可显示。 我找到了很多教程并搜索了StackOverflow,但这些解决方案都没有帮助我,我也无法弄清楚原因。
这是我的代码:
LayoutInflater inflater = (LayoutInflater) getBaseContext().getSystemService(LAYOUT_INFLATER_SERVICE);
View newValueView = inflater.inflate(R.layout.change_value_popup,null);
newValuePopupWindow = new PopupWindow(newValueView, RelativeLayout.LayoutParams.WRAP_CONTENT,RelativeLayout.LayoutParams.WRAP_CONTENT);
newValuePopupWindow.showAtLocation(findViewById(R.id.main),Gravity.CENTER,0,0);
它似乎不起作用,我试图添加:
newValuePopupWindow.setFocusable(true);
但这也没有帮助。
这是我的xml代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
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:background="#CCE5FF"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/enter_value_title_textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="16dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:text="Enter new value"
android:textSize="24sp"
android:textStyle="bold"
app:layout_constraintBottom_toTopOf="@+id/new_value_editText"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
<EditText
android:id="@+id/new_value_editText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:ems="10"
android:inputType="number"
app:layout_constraintBottom_toTopOf="@+id/button"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="500dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:text="OK"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
</RelativeLayout>
我尝试使用RelativeLayout和ConstraintLayout。
弹出窗口是否有可能出现在主布局后面?
答案 0 :(得分:2)
我会为你写一个简单的popUp窗口,我希望它能帮到你。
您必须在AndroidManifest.xml文件中添加以下行:
node
这里我为popUp窗口制作了一个简单的主题,我们可以改变它......我们在styles.xml文件中定义它:
<activity
android:name=".Pop"
android:theme="@style/AppTheme.CustomTheme" />
你也为popUp窗口制作了一个布局,这里是布局代码:
<style name="AppTheme.CustomTheme">
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowCloseOnTouchOutside">true</item>
</style>
你还必须制作java文件,这里是代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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=".Pop">
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="217dp"
android:text="@string/asdfdasdasdasdas" />
最后,我点击按钮时打开popUp,这里是代码(在MainActivity.java文件中添加):
import android.app.Activity;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.util.DisplayMetrics;
public class Pop extends Activity{
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.popwindow);
DisplayMetrics dm = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(dm);
int width = dm.widthPixels;
int height = dm.heightPixels;
getWindow().setLayout((int)(width*.7),(int) (height*.7));
}
}
答案 1 :(得分:1)
LayoutInflater inflater = (LayoutInflater) getBaseContext().getSystemService(LAYOUT_INFLATER_SERVICE);
View newValueView = inflater.inflate(R.layout.change_value_popup,null);
newValuePopupWindow = new PopupWindow(newValueView, RelativeLayout.LayoutParams.WRAP_CONTENT,RelativeLayout.LayoutParams.WRAP_CONTENT);
newValuePopupWindow.showAtLocation(newValueView,Gravity.CENTER,0,0);
进行上述更改并尝试。
答案 2 :(得分:0)
问题出现是因为布局重复(对于横向)。 出于某种原因,在其中一个布局中删除了onClick方法的链接(我总是检查主要布局)。我这么傻的错误:/ 谢谢你们的帮助:)