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);

次のように、.append()メソッドの代わりに.setText()メソッドを使用することをお勧めします。

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を追加し、Viewパラメーターを使用してonClickを実装し、TextViewにキャストしました

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

onClickを使用するというアイデアは、setTextでテキストを変更した後、どのように画面を更新するかからでした。

于 2019-02-15T14:46:00.163 に答える
0

AndroidでUI要素が機能する方法は、要素にアクセスする場合はUIスレッドで行う必要があり、APIまたはインターネット関連のものからnonuiスレッドからデータを取得するため、nonuiスレッドの結果を取得した後、UIを更新できます。要素を簡単にスレッド化します。logcatで、UIスレッドでの作業が多すぎることを確認したはずです。これは、そのようなものに関連しています。深く掘り下げないでください。データの解析が完了した後でプログラムで更新する場合は、UIスレッドを呼び出します。要素を更新します。

于 2019-03-08T08:55:18.840 に答える