- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要重新格式化现有的 Android 应用程序以获得横向版本。当数字输入到 2 个 EditText(账单金额和小费百分比)时,它使用 TextWatcher 来计算小费金额。它本身可以工作,但是当我添加第二个布局时,TextWatcher 停止工作并且不计算任何内容。它旋转并看起来像我想要的那样,但不起作用。我的横向布局具有与纵向布局相同的所有部分,并具有相同的 EditText 和 TextView ID。这就是我用来更改布局的方法:
package com.example.tiporientation;
import androidx.appcompat.app.AppCompatActivity;
import android.content.res.Configuration;
import android.os.Bundle;
import android.text.Editable;
import android.text.TextWatcher;
import android.util.Log;
import android.widget.EditText;
import android.widget.TextView;
import java.text.NumberFormat;
public class MainActivity extends AppCompatActivity {
private TipCalculator tipCalc;
private NumberFormat money = NumberFormat.getCurrencyInstance();
private EditText billEditText;
private EditText tipEditText;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
tipCalc = new TipCalculator(.17f,100);
setContentView(R.layout.activity_main);
billEditText = findViewById(R.id.EDIT_BillAmount);
tipEditText = findViewById(R.id.EDIT_EnterTip);
//create inner-class for this... puts it at bottom of MainActivity
//TextChangeHandler is a "listener"
//attach it to our EDIT texts, so it is listening to changes in bill $ & tip %
TextChangeHandler tch = new TextChangeHandler();
billEditText.addTextChangedListener(tch);
tipEditText.addTextChangedListener(tch);
Configuration config = getResources().getConfiguration();
modifyLayout(config);
}
private void modifyLayout(Configuration newConfig) {
if(newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE)
setContentView(R.layout.activity_main_landscape); //we create new XML for this layout
else if(newConfig.orientation == Configuration.ORIENTATION_PORTRAIT)
setContentView(R.layout.activity_main);
}
public void onConfigurationChanged(Configuration newConfig) {
Log.w("MainActivity", "Inside onConfigurationChanged");
super.onConfigurationChanged(newConfig);
modifyLayout(newConfig); //if orientation changes again, send back to modifyLayout
}
public void calculate () {
//convert edit texts to a string ???
String billString = billEditText.getText().toString();
String tipString = tipEditText.getText().toString();
//2 text views from XML
TextView tipTextView = findViewById(R.id.TXT_TipTotal);
TextView totalTextView = findViewById(R.id.TXT_TotalAmount);
try {
//convert billString to float & tipString to int -- can't do math with strings
float billAmount = Float.parseFloat(billString);
int tipPercent = Integer.parseInt(tipString);
//update the model -- referencing TipCalculator class!
tipCalc.setBill(billAmount);
tipCalc.setTip(.01f * tipPercent);
//ask model to calculate
float tip = tipCalc.tipAmount();
float total = tipCalc.totalAmount();
//update view with formatted tip & total amount
tipTextView.setText(money.format(tip));
totalTextView.setText(money.format(total));
} catch(NumberFormatException nfe) { }
}
//create implements... select all 3 they are then stubbed out in the class
private class TextChangeHandler implements TextWatcher {
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
}
@Override
public void afterTextChanged(Editable s) {
calculate();
}
}
}
list :
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.tiporientation">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity"
android:configChanges="orientation|screenSize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
最佳答案
通过 onConfigurationChanged 回调,您的 Activity 将被销毁并重新创建。文本字段中的值可以存储在 savedInstanceState
中然后在onCreate中检索。
我不完全确定,但是我认为这里发生的是:
您的onCreate
已经运行了,因此你的 TextWatcher
附加到您刚刚通过 setContentView 调用从 modifyLayout
销毁的布局.
我仍然认为你应该让android为你管理这个,但是为了解决这个问题,我建议:
从 onCreate 中删除从第一个 findViewById 开始到(并包括).addTextWatcher 行的代码
通过 onCreate 中的额外修改布局调用消除其他困惑
将此代码放入一个方法中,例如 connectWatchers
从 onCreate
调用此方法
从 modifyLayout
调用此方法
它应该看起来像这样:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
tipCalc = new TipCalculator(.17f,100);
setContentView(R.layout.activity_main);
connectWatchers();
}
private void modifyLayout(Configuration newConfig) {
if(newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE)
setContentView(R.layout.activity_main_landscape); //we create new XML for this layout
else if(newConfig.orientation == Configuration.ORIENTATION_PORTRAIT)
setContentView(R.layout.activity_main);
connectWatchers();
}
public void onConfigurationChanged(Configuration newConfig) {
Log.w("MainActivity", "Inside onConfigurationChanged");
super.onConfigurationChanged(newConfig);
modifyLayout(newConfig); //if orientation changes again, send back to modifyLayout
}
private void connectWatchers() {
billEditText = findViewById(R.id.EDIT_BillAmount);
tipEditText = findViewById(R.id.EDIT_EnterTip);
TextChangeHandler tch = new TextChangeHandler();
billEditText.addTextChangedListener(tch);
tipEditText.addTextChangedListener(tch);
}
关于java - 当方向改变时,EditTexts 不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60551827/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!