gpt4 book ai didi

android - 将 TextView 设置为分贝强度的字符串 - Android Studio

转载 作者:行者123 更新时间:2023-11-29 01:03:03 28 4
gpt4 key购买 nike

问题:

  • 将id为“readOut”的textView设置为测试wifi信号强度的值

代码:

class wifi {
int signalStrength = 0;
int loopToggle = 0;
Context context = MainActivity.this;

@RequiresApi(api = Build.VERSION_CODES.ICE_CREAM_SANDWICH)
public void loop() throws InterruptedException {
while (loopToggle == 0) {
WifiManager signalStrength = (WifiManager) context.getSystemService(Context.WIFI_SERVICE);
String wifiInfo = WifiManager.EXTRA_WIFI_INFO;
TextView textView = (TextView) textView.findViewById(readOut);
Thread.sleep(1000);
}
}
}

布局文件:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.wifilocator.MainActivity">

<TextView
android:id="@+id/readOut"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="filler"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />

</android.support.constraint.ConstraintLayout>

感谢您提供的任何帮助!

最佳答案

如果您引用具有 xml 属性 android:id="@+id/readOut"的 View,则必须编写 R.id.readOut

所以整行应该是

TextView textView = (TextView) textView.findViewById(R.id.readOut);

R 代表 R将生成的类包含您在应用程序中需要的各种资源。

关于android - 将 TextView 设置为分贝强度的字符串 - Android Studio,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49658526/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com