3

在 BroadcastReceiver 中,我会跟踪每次下载列表的时间,并且每次我想用最后一次更新文本视图。我已经完成了以下操作,但时间从未显示。

@Override
public void onReceive(Context context, Intent intent) {
_context = context;
Toast.makeText(context, "ListDownloadReceiver....", Toast.LENGTH_SHORT)
    .show();

boolean force = intent.getBooleanExtra("FORCE", false);

long nextUpdateTime = getUpdateTime();

if (force || nextUpdateTime < System.currentTimeMillis()) {
    if (isNetworkAvailable()) {
    Log.i(LIST_DOWNLOAD_RECEIVER,
        "Going to be downloading the list...");
    DownloadListData downloadList = new DownloadListData(context);
    downloadList.execute();

    } else {
    Log.i(LIST_DOWNLOAD_RECEIVER, "Not connected...");
    context.registerReceiver(this, new IntentFilter(
        ConnectivityManager.CONNECTIVITY_ACTION));
    }
}

DatabaseHandler db = DatabaseHandler.getInstance(context);
String timeFormat = "d/M/yyyy 'at' k:mm:ss";

long lastUpdate = Long.valueOf(db.getPreference("LAST_UPDATED_TIME",
    "0"));

CharSequence time = DateFormat.format(timeFormat, lastUpdate);
Log.i(LIST_DOWNLOAD_RECEIVER, "Time is: " + time);

LayoutInflater inflater = (LayoutInflater) context
    .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = inflater.inflate(R.layout.activity_main, null);
TextView tv = (TextView) view.findViewById(R.id.lastRefreshed);
tv.append("Blah: " + time);

}

这是我的 .xml 文件

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:gravity="left|top"
    android:orientation="vertical" >

    <LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/noShowsLayout"
        android:layout_width="match_parent"
        android:layout_height="115dp"
        android:orientation="horizontal"
        android:background="@color/blue" >

        <TextView
            android:id="@+id/noShowsTextView"
            android:layout_width="match_parent"
            android:layout_height="fill_parent"
            android:gravity="center"
            android:text="@string/no_added_shows"
            android:textAppearance="?android:attr/textAppearanceMedium"
            android:textSize="18dip" />
    </LinearLayout>

    <LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:orientation="horizontal" >

        <ListView
            android:id="@+id/listView1"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" >
        </ListView>
    </LinearLayout>

    <LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="48dp"
        android:layout_gravity="bottom"
        android:background="@color/blue"
        android:orientation="horizontal" >

        <ImageButton 
            android:id="@+id/refreshButton"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="left"
            android:contentDescription="@string/refresh"
            android:src="@drawable/refresh"/>

        <TextView
            android:id="@+id/lastRefreshed"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:layout_gravity="center"
            android:layout_marginLeft="5dp"
            android:text="@string/lastRefreshTime" 
            android:textAppearance="?android:attr/textAppearanceSmall" />

        <ImageButton
            android:id="@+id/button1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="right"
            android:contentDescription="@string/remove_tv_show"
            android:src="@drawable/content_discard" 
            android:clickable="false"/>


    </LinearLayout>

</LinearLayout>
4

5 回答 5

13

您编写了以下行以在 TextView 中显示文本,

TextView tv = (TextView) view.findViewById(R.id.lastRefreshed);
tv.append("Blah: " + time);

我建议你使用 .setText() 方法而不是 .append() 方法,如下,

TextView tv = (TextView) view.findViewById(R.id.lastRefreshed);
tv.setText("Blah: " + time);
view.invalidate();  // for refreshment
于 2012-10-31T01:51:57.663 回答
3

尝试以下(它对我有用):

runOnUiThread(new Runnable() {
    @Override
    public void run() {
        tv.setText("Blah: " + time);
    }
});
于 2018-04-15T15:25:53.677 回答
0

在 run() 方法中创建一个新线程,编写代码以更新所考虑的字段,然后启动循环。一定要记住,您必须在 UI 线程上执行更新操作。

于 2016-10-11T10:03:57.743 回答
0

添加了 OnClickListener 并实现了 onClick,使用 View 参数并强制转换为 TextView

@Override
public void onClick(View v) {
    TextView textView = (TextView) v;
    textView.setText(crotLoan.getReducedNumber());
}

使用 onClick 的想法来自How do you update the screen after you change the text with a setText?

于 2019-02-15T14:46:00.163 回答
0

UI 元素在 android 中的工作方式是,如果您想访问元素,您必须在 UI 线程中执行此操作,并且我们从 API 获取数据或从 nonui 线程获取与互联网相关的内容,因此在获得 nonui 线程的结果后,我们可以更新 UI轻松穿线元素。你一定在logcat中看到UI线程的工作量太大了。和那个东西有关。不要深入它如果你想在解析完数据后以编程方式更新它,调用ui线程并更新元素。

于 2019-03-08T08:55:18.840 回答