- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我已经研究了大约 4 个小时,以解决我遇到的这个问题。
基本上我正在尝试创建一个警告框并使用光标中的数据来设置 TextView 的文本并且数据在那里但是一旦我尝试设置它我每次都会得到一个空对象引用并且我拒绝移动过去它:(
这里是有问题的代码:
public void InputManual(long id) {
@SuppressLint("AndroidLintInflateParams")
final SQLite db = new SQLite(this);
SQLiteDatabase X = db.getReadableDatabase();
Cursor c;
try {
c = X.rawQuery("SELECT Product FROM Inventory WHERE _id =" + id, null);
c.moveToNext();
CreatePopup();
Y = (TextView) findViewById(R.id.product);
Log.v(TAG, "DATA: " + c.getString(c.getColumnIndexOrThrow("Product")).toString());
Y.setText(c.getString(c.getColumnIndexOrThrow("Product")));
c.close();
} catch (Exception e) {
e.printStackTrace();
}
}
当我使用 Log.v 显示它时,数据就在那里,当我尝试设置文本时,它就消失了。
这里是 CreatePopup():
private void CreatePopup() {
LayoutInflater Manual = LayoutInflater.from(this);
final View textEntryView = Manual.inflate(R.layout.update, null);
final EditText infoData = (EditText) textEntryView.findViewById(R.id.InfoData);
final AlertDialog.Builder alert = new AlertDialog.Builder(this);
alert.setTitle("Update Quantity").setView(textEntryView).setPositiveButton("Save",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,
int whichButton) {
String Result = infoData.getText().toString();
String Done = "";
if (Result.length() == 0) {
}
}
}).setNegativeButton("Cancel",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,
int whichButton) {
}
});
alert.show();
}
XML 文件:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/Information"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:paddingLeft="5dp"
android:text="@string/Product"
android:textAppearance="?android:attr/textAppearanceSmall" />
<TextView
android:id="@+id/product"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:inputType="none"
android:text="" />
<EditText
android:id="@+id/InfoData"
style="@android:style/TextAppearance.Small"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:hint="@string/hint_data"
android:inputType="number" />
</LinearLayout>
我有一个 listView onItemClickListerner,它只传递 InputManual(id),它只是数据库中项目的 ID。
我正处于想要扔掉键盘的地步,因为我无法弄清楚为什么每次我尝试任何操作时它都会变为 null。
即使采用不同的方法也会有所帮助,我们将不胜感激。
我的目标是单击 ListView 中的一个项目并使用列表中的项目生成警告框,这样我就可以将数量更改为不同的值,但我只是试图将 TextView 设置为 ListView 中的内容从数据库获取数据。
我可能没有正确解释,但我愿意提供任何可以帮助我解决这个问题的信息!
长时间浏览 stackoverflow,我终于到了需要帮助的地步,因为我不能再用 google 了:(
实际错误:
inventory W/art: Before Android 4.1, method int android.support.v7.widget.ListViewCompat.lookForSelectablePosition(int, boolean) would have incorrectly overridden the package-private method in android.widget.ListView
inventory V/MyActivity: DATA: CokeD
inventory W/System.err: java.lang.NullPointerException: Attempt to invoke virtual method 'void android.widget.TextView.setText(java.lang.CharSequence)' on a null object reference
谢谢!
最佳答案
这个错误:
inventory W/System.err: java.lang.NullPointerException: Attempt to invoke virtual method 'void android.widget.TextView.setText(java.lang.CharSequence)' on a null object reference
表示 TextView 对象为 null,而不是您从数据库中获取的字符串值。
这意味着
Y = (TextView) findViewById(R.id.product);
返回 null,可能是因为该 View 归对话框所有,而不是 Activity 所有。
尝试将字符串值作为参数传递给 CreatePopup() 方法,然后您可以从那里调用 setText。像这样:
private void CreatePopup(String product) {
LayoutInflater Manual = LayoutInflater.from(this);
final View textEntryView = Manual.inflate(R.layout.update, null);
final EditText infoData = (EditText) textEntryView.findViewById(R.id.InfoData);
//Add these lines
final TextView productText = (TextView) textEntryView.findViewById(R.id.product);
productText.setText(product);
...
}
关于java - 使用 Try 语句时的 Android SetText,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43435771/
你好,我有一个列表,我试着做 settext从它,例如我知道TextView.setText(Listobject)喜欢TextView.setText(array[index])但它不起作用。我也尝
我正在尝试将 setText() 设置为 Button btnFloor, btnTable; 这不工作 ATM,实际上我正在尝试从 发送数据 FloorsActivity -> TablesActi
import sys from PyQt5 import QtCore, QtWidgets from PyQt5.QtWidgets import QMainWindow, QWidget, QLa
setText(CharSequence, TextView.BufferType) 和 setText(CharSequence) 有什么区别,什么时候应该使用它们? 最佳答案 setText (C
想知道在android中哪种方法更快。只为求知。 TextView t; t = (TextView) findViewById(R.id.TextView_ID); int number=5; t.
两者都有效,显然,如果您开始连接,则需要获取字符串以避免显示 int。 问题:哪个是最“优雅”或“推荐”使用的? 谢谢 最佳答案 第二种方法更优雅,因为在内部,TextView(或任何 View 类)
我的编辑文本格式有以下代码,因为它可以接受我没有设置任何输入类型的任何输入:。所以最初我得到的默认输入类型是ABC,现在当我将其更改为?123时(使用ABC/123?Togel按钮),并且在输入某个数
例如,我可以通过简单地执行 setText(R.string.value) 来设置文本。我没有收到编译或运行时错误。我错误地了解到这一点,因为我总是通过从资源中获取我的字符串值来设置文本,例如 set
我正在开发 UDP 程序,但在我的 asynctask 中应用 setText 时遇到问题。基本上在 UDP 服务器上,我只要求输入一个端口,然后服务器应该连接到本地主机和端口。布局中间的 TextV
您好,我正在尝试在循环中将 setText 设置为 JTextArea,但我想这样做,在每个循环中,每一行都将在框架中看到。 我尝试过 Thread.sleep(500),因为我认为循环太快而无法设置
setText() 方法是否总是设置为字符串?如果我们想为文本字段设置一个 Double 值,如何实现? 最佳答案 首先将 Double 转换为字符串: textField.setText(myDou
我是 Android 开发新手。我不明白为什么这会在模拟器中崩溃,当我在 Android 模拟器上运行这个程序时,它打开然后快速关闭,给我一条“不幸的是, Hello World 已停止”消息。
我正在 Android 上开发一个小应用程序,但第二行在 SetText 上显示错误imcInterpretation 包含文本值。 imcVlaue 正在工作,但 imcInterpreter 不工
我有一个 Actor ,我正在使用 moveTo(destinationx, destinationy, time) 来移动它。 问题是 Actor 是一个 TextButton,我需要在运动发生时更
我如何在其他方法中使用textview值?我想将“txtTitle.setText”的 Intent 值传递给其他 Activity (汽车),但我无法在 onclick 方法上使用它。 pu
我是一名初学者程序员,我在我的应用程序中发现了一个错误/问题,这并不能让我安心 W1.setText (numberAsString); W2.setText (numberAsString); W3
如何设置要从抽屉导航中的抽屉标题布局查看的文本? protected void onCreate(Bundle savedInstanceState) { [...] NavigationView
我不明白为什么当我尝试在程序中对 JTextArea 对象进行 .setText() 时会出现运行时错误。在我的主 GUI 类中,我设置了一个创建弹出 JFrame 对象的事件,该 JFrame 中有
在我的项目中,我尝试通过一种方法来暴力破解字典,然后将任何尝试和正确的单词输出到主类的 textField 。 输出应该是 Trying a... Trying b... Trying c... Fo
我正在尝试在 JButton 中获取两行文本 文本应该显示在 和 之间以及/> 和 just like this 之间。但由于某种原因,它在我的 for 循环中不起作用 JButton title
我是一名优秀的程序员,十分优秀!