- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
所以我有三项 Activity 。其中一个用于接受用户的输入,如果所有输入均已填写,则使用下一步按钮移动到第二个 Activity 。
第二个 Activity 可用于接受和更新第二个类中用于执行计算的一些已定义的值,保存按钮用于保存新值,完成按钮用于执行计算并在上一个 Activity 中显示结果。
每次我在输入后单击保存按钮决定使用一组新值时,如何更新第二个 Activity/类?
第一个 Activity
<EditText
android:id="@+id/first_number"
android:layout_width="304dp"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginLeft="16dp"
android:layout_marginTop="10dp"
android:layout_marginEnd="16dp"
android:layout_marginRight="16dp"
android:background="@drawable/edittext_bg"
android:ems="10"
android:hint="Enter first Number"
android:inputType="number"
android:paddingStart="20dp"
android:paddingEnd="10dp"
android:paddingLeft="20dp"
android:paddingTop="10dp"
android:paddingRight="10dp"
android:paddingBottom="10dp"
android:textSize="14sp" />
<EditText
android:id="@+id/second_number"
android:layout_width="304dp"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginLeft="16dp"
android:layout_marginTop="10dp"
android:layout_marginEnd="16dp"
android:layout_marginRight="16dp"
android:background="@drawable/edittext_bg"
android:ems="10"
android:hint="Enter second Number"
android:inputType="number"
android:paddingStart="20dp"
android:paddingEnd="10dp"/>
<EditText
android:id="@+id/third_number"
android:layout_width="304dp"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginLeft="16dp"
android:layout_marginTop="10dp"
android:layout_marginEnd="16dp"
android:layout_marginRight="16dp"
android:background="@drawable/edittext_bg"
android:ems="10"
android:hint="Enter second Number"
android:inputType="number"
android:paddingStart="20dp"
android:paddingEnd="10dp"/>
<Button
android:id="@+id/btn_next"
android:layout_width="145dp"
android:layout_height="49dp"
android:layout_marginTop="8dp"
android:background="@drawable/curved_button"
android:paddingStart="5dp"
android:paddingEnd="19dp"
android:paddingRight="10dp"
android:paddingLeft="2dp"
android:drawableLeft="@drawable/add_button_image"
android:text="@string/Next"
android:textAllCaps="false"
android:textColor="@android:color/background_light"
android:typeface="serif"
app:layout_constraintEnd_toEndOf="parent" />
SECOND ACTIVITY
<EditText
android:id="@+id/contingencyFee"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
android:layout_marginLeft="10dp"
android:layout_marginTop="30dp"
android:background="@color/pageColor"
android:clickable="false"
android:cursorVisible="false"
android:focusable="false"
android:focusableInTouchMode="false"
android:hint="@string/contingency"
android:inputType="none"
android:textSize="16sp" />
<EditText
android:id="@+id/projectManagement"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
android:layout_marginLeft="10dp"
android:layout_marginTop="30dp"
android:background="@color/pageColor"
android:clickable="false"
android:cursorVisible="false"
android:focusable="false"
android:focusableInTouchMode="false"
android:hint="@string/projectFee"
android:inputType="none"
android:textSize="16sp" />
<EditText
android:id="@+id/externalWorks"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
android:layout_marginLeft="10dp"
android:layout_marginTop="30dp"
android:background="@color/pageColor"
android:clickable="false"
android:cursorVisible="false"
android:focusable="false"
android:focusableInTouchMode="false"
android:hint="@string/externalWorks"
android:inputType="none"
android:textSize="16sp" />
<Button
android:id="@+id/save_button"
android:layout_width="wrap_content"
android:layout_height="38dp"
android:layout_marginStart="120dp"
android:layout_marginLeft="120dp"
android:layout_marginTop="20dp"
android:layout_marginBottom="52dp"
android:onClick="saveButton"
android:background="@drawable/save_button"
android:text="@string/inputVariableSaveButton"
android:textColor="@android:color/background_light"
app:layout_constraintBottom_toTopOf="@+id/textView16"
app:layout_constraintEnd_toStartOf="@+id/proceedBtn"
app:layout_constraintHorizontal_bias="0.464"
app:layout_constraintTop_toBottomOf="@+id/scrollView3"
app:layout_constraintVertical_bias="0.483" />
<Button
android:id="@+id/proceed_button"
android:layout_width="116dp"
android:layout_height="32dp"
android:layout_marginTop="8dp"
android:layout_marginBottom="52dp"
android:onClick="proceed"
android:text="@string/defaultVariable"
android:textAllCaps="false"
android:textColor="@android:color/background_light"
android:textSize="18sp"
app:layout_constraintBottom_toTopOf="@+id/textView16"
app:layout_constraintEnd_toEndOf="parent"
FIRST CLASS
btn_next.setOnClickListener(new View.OnClickListener(){
@RequiresApi(api = Build.VERSION_CODES.N)
public void onClick(View v){
try{
// **** VALUES FROM THE FIRST ACTIVITY
double first_number =
Double.valueOf(first_number.getText().toString());
double firstNumberTotal = first_number* /*
(250*70000)*/ 17500000;
double second_number =
Double.valueOf(second_number.getText().toString());
double secondNumberTotal = second_number * /*
(214*70000)*/ 14980000;
double third_number =
Double.valueOf(third_number.getText().toString());
double thirdNumberTotal = third_number * /*
(140*70000)*/ 9800000;
}catch (Exception ex){
return;
}
}
});
SECOND CLASS
save_button.setOnClickListener(new View.OnClickListener(){
@RequiresApi(api = Build.VERSION_CODES.N)
public void onClick(View v){
try{
// VALUES FROM SECOND ACTIVITY
double contingencyFee =
Double.valueOf(contingencyFeet.getText().toString());
double contingencyTotal = contingencyFee *
1.015; /*UPDATE THIS WITH NEW VALUE*/
double projectManagement =
Double.valueOf(projectManagement.getText().toString());
double totalProjectCost = projectManagemen *
1.2; /*UPDATE THIS WITH NEW VALUE*/
double externalWorks =
Double.valueOf(externalWorks.getText().toString());
double externalWorksCost = externalWorks *
1.15; /*UPDATE THIS WITH NEW VALUE*/
}catch (Exception ex){
return;
}
}
});
最佳答案
按钮点击中的第一个 Activity
intent = new Intent(FirstActivity.this, SecondActivity.class);
intent.putExtra("firstno", String.valueOf(firstnumber));
intent.putExtra("secondno", String.valueOf(secondnumber));
intent.putExtra("thirdno", String.valueOf(thirdnumber));
startActivity(intent);
加载第二个 Activity
String firstNo, SecondNo, ThirdNo;
firstNo = getIntent().getExtras().getString("firstno");
SecondNo = getIntent().getExtras().getString("secondno");
ThirdNo = getIntent().getExtras().getString("thirdno");
编辑内容
Double firstNo, SecondNo, ThirdNo;
firstNo = Double.parseDouble(getIntent().getExtras().getString("firstno"));
SecondNo = Double.parseDouble(getIntent().getExtras().getString("secondno"));
ThirdNo = Double.parseDouble(getIntent().getExtras().getString("thirdno"));
textView.setText(String.valueOf(firstNo + SecondNo + ThirdNo));
关于java - 在运行时更新默认值并在 android studio 中使用新值进行计算,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55185447/
我正在尝试使用 tkinter 创建一个类似点击器的游戏作为练习。我对 tkinter 很陌生,所以如果问题非常基本,我深表歉意。我设置了一个按钮来添加点击次数,并且我还尝试设置自动点击功能。我的代码
我想以特定方式更新表 A 中的第 1 列:当列中的第三个字符是“_”时,我想插入前 2 个字符,如果第三个字符还有其他任何内容,我想保留它是。 例子: |col1|
我用 View 模型组装了一个简单的登录 fragment 。这是 fragment : class LoginFragment : Fragment() { companion object {
是否可以在 mySQL 中的创建表语句中编写更新语句?假设我们有两个不同的表。当我在一个表上插入某些内容时,我想更改另一表中的值。这在 mySQL 中可能吗 最佳答案 需要更多规范。 如果您有 2 个
我组合了一个简单的发布/订阅模式,以允许动态实例化和运行多个 JavaFX 类。这些类中的每一个(“订阅者”)都旨在可视化来自具有“发布者”角色的模型(在模型/ View / Controller 意
我正在使用 pygame 并在主循环的每个循环中更新到屏幕。我不明白的是,在我添加一个 for 循环查找事件之前,什么都不会更新,然后突然所有更新都发生了。这是为什么? def run(self
我是 React 的初学者;我知道 setState 是异步的,但我不明白为什么在示例笔中下方框下方的刷新不会立即完成,而仅在输入第二个字符后才更新。 Codepen:(已更新以链接到正确的笔) ht
我在 Java 程序中有两个选项卡。一个用于添加股票,另一个用于列出我创建的股票。当我在第二个选项卡中添加新项目时,我试图设法更新第一个选项卡中的项目列表。有任何想法吗? 我希望第一个选项卡显示我在第
我有一个 Activity A。加载 A 后,单击 A 中的按钮会在 A 的主页布局上添加 fragment F。现在一旦进入 F,如果我正在调用 getActivity().getSupportFr
下面提供的这段代码中的 friend 们,我想在从播放 Intent 恢复时刷新我的 TextView 。但是每当我尝试在 OnCreate 之外但在我的主类中定义我的 textview 时(在 st
我是 Postgres 的新手。我正在尝试使用 java/postgres jdbc 执行以下代码(适用于 MySQL): for (int i = 0; i < arr.size(); i++) {
目前,我有一个更新函数,可以更新一行,但如果我将其中一个框留空,而不是不更改该值,则该值将被删除。如果我只需要更新其中一个值,我想更新该值并将其他框留空。这可能吗? 目前我的代码是这样的。 最佳答案
我正在编写 JavaScript,它正在为一个项目计数到一定数量。数量可能在 100,000 左右,完成处理大约需要 10-15 秒。我希望脚本在用户调用页面时立即运行,并在脚本完成时进行重定向。是否
每当具有不同输入 ID 的另一个 selectInput 的值发生变化时,我需要更改一个具有自己输入 ID 的 selectInput 的值。 在 javascript 中,这将是 onchage,但
我正在尝试弄清楚如何在将视频上传到服务器时更新我的 UIProgressView。该视频是用户选择的视频,这是我上传到我的服务器的代码: NSMutableArray *array = [[NSM
我想在单击 h:commandButton 时更新 id="contents"的 div,但复杂的部分是 h:commandButton 位于 c:forEach Click Me
我目前正在构建一个读取数组并将其显示在 TableView 上的 UITableView。我不断地添加到数组中,我希望在 View 上有一个按钮,一旦单击它就会更新 UITableView。 如何从我
我在 StructuredProperty 中有一个 ComputedProperty,它在首次创建对象时不会更新。 当我创建对象时 address_components_ascii 没有被保存。该字
我知道 SCNPhysicsBody 在节点缩放时不会缩放,但我还没有找到解决此问题的好方法。我想缩放节点,然后在缩放后将 SCNPhysicsBody 更新为节点。 let box = SCNBox
我在自定义 UITableViewCell 中有一个 UILabel,当设备旋转时,它会调整大小。旋转后需要重新计算此标签中的文本,因为我要将其缩小到适当大小并在末尾附加一些文本。 例如数据模型有:“
我是一名优秀的程序员,十分优秀!