- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经创建了按钮
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.paulk.tipcalc.TipCalc" >
<EditText
android:id="@+id/BillEditText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/billTextView"
android:layout_alignBottom="@+id/billTextView"
android:layout_toEndOf="@+id/billTextView"
android:layout_toRightOf="@+id/billTextView"
android:ems="5"
android:inputType="numberDecimal"
android:text="@string/bill_edit_text" >
<requestFocus />
</EditText>
<TextView
android:id="@+id/billTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginStart="19dp"
android:layout_marginLeft="19dp"
android:layout_marginTop="20dp"
android:text="@string/bill_text_view" />
<TextView
android:id="@+id/tipTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/BillEditText"
android:layout_marginStart="34dp"
android:layout_marginLeft="34dp"
android:layout_toEndOf="@+id/billTextView"
android:layout_toRightOf="@+id/BillEditText"
android:text="@string/tip_text_view" />
<Button
android:id="@+id/incrementButton"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_alignEnd="@+id/tipEditText"
android:layout_alignRight="@+id/tipEditText"
android:layout_alignTop="@+id/tipTextView"
android:onClick="increaaseTip"
android:text="@string/increment"
android:textSize="12sp" />
<TextView
android:id="@+id/totalTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/tipEditText"
android:layout_toEndOf="@+id/billTextView"
android:layout_toRightOf="@+id/billTextView"
android:text="@string/total_text_view" />
<EditText
android:id="@+id/totalEditText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/totalTextView"
android:layout_marginTop="19dp"
android:layout_toStartOf="@+id/tipTextView"
android:layout_toLeftOf="@+id/tipTextView"
android:ems="5"
android:inputType="numberDecimal"
android:text="@string/total_edit_text" />
<EditText
android:id="@+id/tipEditText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/incrementButton"
android:layout_marginTop="20dp"
android:layout_toEndOf="@+id/billTextView"
android:layout_toRightOf="@+id/tipTextView"
android:ems="4"
android:inputType="numberDecimal"
android:text="@string/tip_edit_text" />
<Button
android:id="@+id/decrementButton"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_above="@+id/tipEditText"
android:layout_marginEnd="12dp"
android:layout_marginRight="12dp"
android:layout_toLeftOf="@+id/incrementButton"
android:layout_toStartOf="@+id/incrementButton"
android:text="@string/decrement"
android:textSize="12sp"
android:onClick="DecreaseTip"/>
<SeekBar
android:id="@+id/changeTipSeekBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/billTextView"
android:layout_alignRight="@+id/BillEditText"
android:layout_alignTop="@+id/tipEditText"
android:progress="15" />
<TextView
android:id="@+id/changeTipTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/changeTipSeekBar"
android:layout_alignLeft="@+id/changeTipSeekBar"
android:text="@string/change_tip_text_view" />
</RelativeLayout>
我不确定逻辑如何让我的增量/减量按钮增加和减少小费值
package com.paulk.tipcalc;
import android.support.v7.app.ActionBarActivity;
import android.text.Editable;
import android.text.TextWatcher;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.SeekBar;
import android.widget.SeekBar.OnSeekBarChangeListener;
public class TipCalc extends ActionBarActivity{
public final static String BILL_WITHOUT_TIP = "BILL_WITHOUT_TIP";
public final static String CURRENT_TIP = "CURRENT_TIP";
public final static String TOTAL_BILL = "TOTAL_BILL";
private double billBeforeTip;
private double tipAmount;
private double totalAmount;
//private double billAfterTip = (billBeforeTip * tipAmount);
EditText billBeforeTipET;
EditText tipAmountET;
EditText totalAmountET;
Button increment;
Button decrement;
double counter;
SeekBar tipSeekBar;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_tip_calc);
//if its a new session
if(savedInstanceState == null){
billBeforeTip = 0.0;
tipAmount = 0.10;
totalAmount = 0.0;
//if its a saved session
}else{
billBeforeTip = savedInstanceState.getDouble(BILL_WITHOUT_TIP);
tipAmount = savedInstanceState.getDouble(CURRENT_TIP);
totalAmount = savedInstanceState.getDouble(TOTAL_BILL);
}
//pulling through each of the text fields
billBeforeTipET = (EditText) findViewById(R.id.BillEditText);
tipAmountET = (EditText) findViewById(R.id.tipEditText);
totalAmountET = (EditText) findViewById(R.id.totalEditText);
tipSeekBar = (SeekBar) findViewById(R.id.changeTipSeekBar);
increment = (Button) findViewById(R.id.incrementButton);
decrement = (Button) findViewById(R.id.decrementButton);
billBeforeTipET.addTextChangedListener(billBeforeTipListener);
tipAmountET.addTextChangedListener(tipAmountListener);
tipSeekBar.setOnSeekBarChangeListener(tipSeekBarChangeListener);
/*increment.setOnClickListener(this);
decrement.setOnClickListener(this);*/
}
private TextWatcher tipAmountListener = new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
try{
tipAmount = Double.parseDouble(s.toString());
}catch(NumberFormatException e){
tipAmount = .0;
}
updateTipandTotalAmount();
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count,
int after) {
// TODO Auto-generated method stub
}
@Override
public void afterTextChanged(Editable s) {
// TODO Auto-generated method stub
}
};
private TextWatcher billBeforeTipListener = new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
//making sure the correct format is input into the field
try{
billBeforeTip = Double.parseDouble(s.toString());
}catch(NumberFormatException e){
billBeforeTip = 0.0;
}
updateTipandTotalAmount();
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count,
int after) {
// TODO Auto-generated method stub
}
@Override
public void afterTextChanged(Editable s) {
// TODO Auto-generated method stub
}
};
public void increaseTip(View view){
if(view.getId() == R.id.incrementButton){
}
}
我已对此进行了注释,因为我不确定这是为按钮创建逻辑的最佳方法
/*public void onClick(View view){
if(increment.){
tipAmount =
tipAmount = tipAmount * 0.01;
tipAmount + 0.01;
//double tipAmount = Double.parseDouble(tipAmountET.getText().toString());
tipAmountET.setText(String.format("%.02f", tipAmount));
}else if(view == decrement){
}
}*/
private void updateTipandTotalAmount(){
//converts the double value into a string value
double tipAmount = Double.parseDouble(tipAmountET.getText().toString());
//how the total amount is calculated
double totalAmount = billBeforeTip + (billBeforeTip * tipAmount);
//formating the total amount
totalAmountET.setText(String.format("%.02f", totalAmount));
}
protected void onSaveInstanceState(Bundle outState){
super.onSaveInstanceState(outState);
outState.putDouble(BILL_WITHOUT_TIP, billBeforeTip);
outState.putDouble(CURRENT_TIP, tipAmount);
outState.putDouble(TOTAL_BILL, totalAmount);
}
private OnSeekBarChangeListener tipSeekBarChangeListener = new OnSeekBarChangeListener() {
@Override
public void onStopTrackingTouch(SeekBar seekBar) {
// TODO Auto-generated method stub
}
@Override
public void onStartTrackingTouch(SeekBar seekBar) {
// TODO Auto-generated method stub
}
@Override
public void onProgressChanged(SeekBar seekBar, int progress,boolean fromUser) {
tipAmount = (tipSeekBar.getProgress()*.01);
tipAmountET.setText(String.format("%.02f", tipAmount));
}
};
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.tip_calc, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
最佳答案
您可以通过设置按钮的监听器来增加或减少使用按钮的计数器。
increment.setOnclickListener();
现在重写 onClick() 方法并检查单击了哪个按钮并编写所需的代码。
@override
public void onClick(View view){
if(view.getId==R.id.incrementButton){
tipAmount =
tipAmount = tipAmount * 0.01;
tipAmount + 0.01;
//double tipAmount = Double.parseDouble(tipAmountET.getText().toString());
tipAmountET.setText(String.format("%.02f", tipAmount));
}
if(view.getId==R.id.decrementButton){
//decrement code.
}
}
关于java - 我将如何实现使用 Android 中的按钮按下来增加 double 值的逻辑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26594852/
下面的代码有效,我觉得double(double)和double(*)(double)没有区别,square和 &square,我说得对吗? #include double square(doubl
我知道我的作业很草率,这是我在这门课上的第 4 次作业。任何帮助将不胜感激,谢谢。 double getPrincipal(0); double getRate(0); double getYe
我遇到了那个错误,当我使用类时,我在使用函数指针时遇到了这个错误。我的函数'ope'函数我该如何解决 evaluator::function(){ double (*ope) (dou
问题://故事从哪里开始 Graphics 类型中的方法 drawLine(int, int, int, int) 不适用于参数 (double, double, double, double) g.
我有一张 map> m1 形式的 map .我可以将其复制到 map m2 形式的 map 吗?这样键是相同的,并且 m2 中的值是 get(m1->second) 不使用循环?谢谢! 最佳答案 这样
有没有办法获取vector> 的“.first”和“.second”的连续内存? ?我的意思是: void func(int N, double* x, double* y) { for (i
我正在尝试将自定义 lambda 传递给需要函数指针的函数(更准确地说是 zero 中的 Brent library 函数)。 我的想法是,我将使用参数创建一次 lambda,然后用多个值对其求值 x
这是一个很简单的问题,让我很困惑。 我收到一个源文件的以下错误,但另一个没有: 4 src/Source2.cpp:1466: error: no matching function for cal
struct CalculatorBrain { private var accumulator: Double? func changeSign(operand: Double) -
在我正在进行的项目中,我尝试使用 curlpp库来发出一个简单的 html GET 请求。当我将 cpp 文件传递给 g++ 时,出现以下错误: /usr/local/include/curlpp
不使用double就能获得quadruple精度超过16位的数字吗?如果可能的话,这取决于编译器还是其他?因为我知道有人说他使用double精度,并且具有22位精度。 最佳答案 数据类型double
我正在寻找有关特斯拉 GPU 中硬件如何实现 double 的信息。我读到,两个流处理器正在处理单个 double 值,但我没有找到 nvidia 的任何官方论文。 提前致谢。聚苯硫醚为什么大多数 G
这个问题在这里已经有了答案: Passing capturing lambda as function pointer (10 个答案) 关闭 2 年前。 我有这个错误 error: cannot
情况:我有一个元组列表,其中添加了一个元组: List> list = new List>(); list .Add(new Tuple(2.2, 6.6)); 一切似乎都还好。但是......在 D
我有一个 JList,里面有一堆名字,还有一个包含这些名字值的数组 final Double[] filmcost = { 5.00, 5.50, 7.00, 6.00, 5.00 }; 我想做的是,
我试图找出牛顿法来求方程的根。这个错误出来了,我无法处理。 double fn(double n){ return sin(n)+log(n)-1; } double f1n(double n
我有一个 junit 测试断言两个 Double 对象,具有以下内容: Assert.assertEquals(Double expected, Double result); 这很好,然后我决定将其
我正在尝试引入部分数据文件来填充数组,用户尝试了三次输入正确的数据文件名。我一再遇到这些错误。我知道像 arr 这样的数组只是一个指向内存块的指针。 #include #include #incl
我正在尝试完成复习题(为即将到来的编程决赛),但是,我无法解决这个问题,因为我不断收到错误(标题)。正如预期的那样,我将发布问题和我尝试的解决方案。 问题: 给定以下函数定义:void swap(do
任何人都知道如何实现这一目标。我已经尝试了通常的公式,但我只得到正数 Double.NEGATIVE_INFINITY) return d; } } 这将以相同的概率
我是一名优秀的程序员,十分优秀!