gpt4 book ai didi

java - 如何使用弹出窗口中的另一个按钮创建一个按钮

转载 作者:行者123 更新时间:2023-12-02 11:41:39 24 4
gpt4 key购买 nike

我正在尝试创建一个应用程序,当单击弹出窗口中的按钮时,将在同一 Activity 的另一个布局中创建一个新按钮。

这是 popupwindow.xml 的代码

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

<Button
android:id="@+id/start_goal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/start_goal" />


</RelativeLayout>

这是activitymain.xml的代码

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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="com.example.eugene.trackeruptest3.MainActivity"
android:background="@color/darkgrey"
android:orientation="vertical">

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="355dp">

<Button
android:id="@+id/setupgoal"
android:layout_width="350dp"
android:layout_height="wrap_content"
android:text="@string/setup_goal"
android:textSize="25sp" />

</RelativeLayout>

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/buttonContainer">

</RelativeLayout>
</LinearLayout>

这是弹出窗口的java代码

public class creategoal extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);

setContentView(R.layout.popupwindow);

DisplayMetrics dm = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(dm);

int width = dm.widthPixels;
int height = dm.heightPixels;

getWindow().setLayout((int)(width*.8),(int)(height*.6));
}
}

这是 MainActivity.java 的 java 代码

public class MainActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

Button setupgoal = (Button) findViewById(R.id.setupgoal);

setupgoal.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
startActivity(new Intent(MainActivity.this,creategoal.class));
}
});
}
}

最佳答案

您是否尝试过在 XML 上使用 visibility:gone 并使用 view.setVisibility(Visibility.VISIBLE); 设置它在您的 onClick 方法上?

关于java - 如何使用弹出窗口中的另一个按钮创建一个按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48503340/

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