我想打电话给你 setText()
a方法 TextView
经常在第二个线程上显示时间。这个 TextView
是以编程方式添加到mainactivity根视图的布局的一部分。我打电话时应用程序崩溃了 setText()
由于错误。
nullpointerexception:尝试对空对象引用调用虚方法
我试过访问 TextView
用不同的方法,但每次都是一样的 NullPointerException
. 我知道的唯一解决方案是将我想要的布局添加到activity_main.xml中,但这并不是我想要的。
下面是我如何膨胀视图并将其添加到mainactivity.java中的linearlayout(id/widgetscreen)中,以及如何调用 setText()
方法。
´´´ linearlayout widgetscreen=(linearlayout)findviewbyid(r.id.widgetscreen);
mTime = getLayoutInflater().inflate(R.layout.widget_time, null);
mDate = (TextView) mTime.findViewById(R.id.TVdate);
mMEZ = (TextView) mTime.findViewById(R.id.TVmez);
mGMT = (TextView) mTime.findViewById(R.id.TVgmt);
WidgetScreen.addView(mTime);
// The code where I set time for TextView
while (!StopDateThread) {
final String mmTime = getformatedUST();
final String mmDate = getformatedDate();
final String mmGMT = getformatedGMT();
Log.d(TAG, "run: ");
try {
mMEZ.setText(mmTime);
mDate.setText(mmDate);
mGMT.setText(mmGMT);
Thread.sleep(500);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
widget_time.XML
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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:orientation="vertical"
android:layout_width="match_parent"
android:id="@+id/WidgetTabTime"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_clock"
android:layout_marginTop="@dimen/LabelIconMarginTop"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
android:layout_marginStart="@dimen/LabelIconMarginStart"
android:layout_gravity="center"
android:contentDescription="CLOCK"
android:id="@+id/LabelIcon"/>
<View
android:id="@+id/view"
android:layout_width="match_parent"
android:layout_height="@dimen/StrokeWidth"
android:layout_marginTop="@dimen/LabelDividerMarginTop"
android:background="@color/colorAccent"
app:layout_constraintTop_toBottomOf="@id/LabelIcon" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/colorAccent"
android:fontFamily="sans-serif-light"
app:layout_constraintStart_toEndOf="@id/LabelIcon"
android:layout_marginStart="@dimen/LabelTextMarginStart"
app:layout_constraintBottom_toBottomOf="@id/LabelIcon"
android:text="@string/time"
android:textSize="@dimen/LabelText"/>
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Date:"
app:layout_constraintStart_toStartOf="parent"
android:layout_marginStart="@dimen/StatsMarginStart"
android:layout_marginTop="@dimen/StatsMarginTop"
android:textColor="@color/colorAccent"
android:fontFamily="sans-serif-light"
android:textSize="@dimen/StatsText"
app:layout_constraintTop_toBottomOf="@+id/view" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/StatsMarginTop"
android:fontFamily="sans-serif-light"
android:text="MEZ:"
android:textColor="@color/colorAccent"
android:textSize="@dimen/StatsText"
app:layout_constraintStart_toStartOf="@+id/textView"
app:layout_constraintTop_toBottomOf="@+id/textView" />
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="GMT:"
android:textColor="@color/colorAccent"
android:fontFamily="sans-serif-light"
android:textSize="@dimen/StatsText"
android:layout_marginTop="@dimen/StatsMarginTop"
app:layout_constraintStart_toStartOf="@+id/textView2"
app:layout_constraintTop_toBottomOf="@+id/textView2" />
<TextView
android:id="@+id/textView4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="LST:"
android:layout_marginTop="@dimen/StatsMarginTop"
android:textColor="@color/colorAccent"
android:fontFamily="sans-serif-light"
android:textSize="@dimen/StatsText"
app:layout_constraintStart_toStartOf="@+id/textView3"
app:layout_constraintTop_toBottomOf="@+id/textView3" />
<TextView
android:id="@+id/TVdate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/CurrentDate"
android:layout_marginEnd="@dimen/StatsMarginEnd"
android:textColor="@color/colorAccent"
android:fontFamily="sans-serif-light"
android:textSize="@dimen/StatsText"
app:layout_constraintBottom_toBottomOf="@+id/textView"
app:layout_constraintEnd_toEndOf="parent" />
<TextView
android:id="@+id/TVmez"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/CurrentLocalTime"
android:layout_marginEnd="@dimen/StatsMarginEnd"
android:textColor="@color/colorAccent"
android:fontFamily="sans-serif-light"
android:textSize="@dimen/StatsText"
app:layout_constraintBottom_toBottomOf="@+id/textView2"
app:layout_constraintEnd_toEndOf="parent" />
<TextView
android:id="@+id/TVgmt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/CurrentGMT"
android:layout_marginEnd="@dimen/StatsMarginEnd"
android:textColor="@color/colorAccent"
android:fontFamily="sans-serif-light"
android:textSize="@dimen/StatsText"
app:layout_constraintBottom_toBottomOf="@+id/textView3"
app:layout_constraintEnd_toEndOf="parent" />
<TextView
android:id="@+id/textView8"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="02:57:15"
android:layout_marginEnd="@dimen/StatsMarginEnd"
android:textColor="@color/colorAccent"
android:fontFamily="sans-serif-light"
android:textSize="@dimen/StatsText"
app:layout_constraintBottom_toBottomOf="@+id/textView4"
app:layout_constraintEnd_toEndOf="parent" />
<View
android:layout_width="match_parent"
android:layout_height="5dp"
app:layout_constraintTop_toBottomOf="@id/textView4"/>
<View
android:layout_width="match_parent"
android:layout_height="5dp"
app:layout_constraintTop_toBottomOf="@id/textView4"/>
</androidx.constraintlayout.widget.ConstraintLayout>
最简单的方法是什么 setText()
方法?
1条答案
按热度按时间xfb7svmp1#
你不能使用
findViewById()
在充气布局上,您必须通过将充气布局添加到主布局中如本文所述,findviewbyid()为膨胀布局返回null