한국어

Coding

온누리070 플레이스토어 다운로드
    acrobits softphone
     온누리 070 카카오 프러스 친구추가온누리 070 카카오 프러스 친구추가친추
     카카오톡 채팅 상담 카카오톡 채팅 상담카톡
    
     라인상담
     라인으로 공유

     페북공유

   ◎위챗 : speedseoul


  
     PAYPAL
     
     PRICE
     

pixel.gif

    before pay call 0088 from app


https://stackoverflow.com/questions/18234835/how-can-i-set-the-text-for-a-textview-from-an-asynctask-activity

Viewed 5k times
1

I have got a Fragment Activity that contains a textview and another class that extends AsyncTask. Now I would like to use the onPostExecute(String result) method to set the result text in my textview that is in my fragment activity.

How can I do that? I already created a custom constructor for the AsyncTask class that takes in a context object. How can I use that??

This is how I create a task object in my Fragment activity:

String query = "someText";
Task task = new Task(this.getActivity());
task.execute(query);

This is a snippet from my task class:

public class Task extends AsyncTask<String, Void, String> {

    private Context context;

    public Task (Context context) {
        this.context = context;
    }

    protected void onPostExecute(String result) {
    super.onPostExecute(result);
    // ??? What comes here ???
    }
}
5
TextView txt = (TextView)((Activity)context).findViewById(R.id.watheveryouwant);
txt.setText("blabla");

But you should pass an Activity and not a Context, will be easier ;-)

Or

    public Task (Context context, TextView t) {
        this.context = context;
        this.t = t;
    }
   super.onPostExecute(result);
        t.setText("BlahBlah")
    }

Should do the trick

0

You can pass to the AsynkTast the instance of the TextView as a parameter, and call setText in onPostExecute.

0

in your case, simply following will come here:

((TextView)findViewById(R.id.xyz)).setText("abc");
0

I picked the solution from

How do I return a boolean from AsyncTask?

new Task(getActivity()).execute(query);

In the Constructor of AsyncTask

TheInterface listener;
public Task(Context context)
{
  listener = (TheInterface) context; 
}

Interface

public interface TheInterface {

public void theMethod(String result); // your result type

 }

Then

In your doInbackground return the result.

In your onPostExecute

if (listener != null) 
{
  listener.theMethod(result); // result is the String
  // result returned in doInbackground 
  // result of doInbackground computation is a parameter to onPostExecute 
}

In your activity class or fragment implement the interface

public class ActivityName implements Task.TheInterface

Then

@Override
 public void theMethodString result) { 
    tv.setText(result); 
    // set the text to textview here with the result of background computation
    // remember to declare textview as a class member.
 }

Edit:

You are also missing @Override annotation for your onPostExecute

번호
제목
글쓴이
96 안드로이드 6.0 permission 가장잘된 예제
admin
2019-12-12 10319
95 How to fish notification enable
admin
2019-10-13 10335
94 FCM 푸시 메세지 전송
admin
2019-09-27 10547
93 안드로이드 웹뷰 webview 설명좀 잘해놓은곳 androidx 사용
admin
2019-12-24 10606
안드로이드 비동기 통신 결과값을 Textview set text 값 설정 기록 표시셋 이해 하기 쉽게
admin
2019-12-17 10643
91 안드로이드 원그래프 걱은선그래프 만들기 그리기
admin
2019-12-24 10675
90 [Android] activity 인텐트(Intent) 화면 간 이동과 데이터 전달 잘된설명
admin
2019-12-24 11028
89 Google wants developers to add dark themes to save battery life
admin
2019-03-28 11250
88 add set and cancel of the notification on those listeners
admin
2018-12-14 11341
87 안드로이드 디버깅 Logcat을 이용해서 로그 남기기
admin
2019-09-18 11390
86 Android Service and Jobscheduler sourcecode
admin
2018-12-22 11420
85 안드로이드 스튜디오 에서 팩키지명 변경하기 동영상 으로 보기
admin
2018-10-01 11606
84 런타임 안드로이드 권한 SDK 23 이상 권한 부여하기 코드
admin
2018-12-06 11668
83 android.os.Build.VERSION_CODES.O 오레오 알림 작성 소스코드
admin
2018-12-14 11710
82 안드로이드 개발시에 팩키지명 변경하기
admin
2018-09-21 11735
81 일반 Activity와 AppCompatActivity의 차이 ?
admin
2018-12-06 11823
80 Android sms intent filter SMS 보내기
admin
2018-12-19 11891
79 Android OS 9 Pie 동작 변경사항 정리 개발자용
admin
2019-05-25 11913
78 FirebaseInstanceIdService is deprecated now FCM token
admin
2019-05-29 11973
77 goodbye to your implicit BroadcastReceivers
admin
2018-05-01 12001
76 Android 6.0 이상 접근권한 checkselfPermission source code
admin
2018-09-06 12084
75 안드로이드 버전 역사
admin
2018-09-01 12090
74 Questions & Answers Android 개발자
admin
2018-04-26 12092
73 안드로이드 스튜디오 PreferenceActivity로 설정창 쉽게 만들기
admin
2020-01-17 12179
72 Android Shape Drawable Examples
admin
2018-12-05 12193
71 android.telephony.TelephonyManager.getSubscriberId 베스트코드 code
admin
2018-12-31 12216
70 android.os.Build.VERSION_CODES.O 오레오 알림 작성
admin
2018-12-14 12255
69 JobScheduler - Android Studio Tutorial
admin
2018-12-22 12272
68 SDK Platform Release Notes
admin
2018-05-13 12298
67 android apk 패키징 v1, v2
admin
2018-12-05 12426
66 jobscheduler 간략하게 설명
admin
2018-12-22 12467
65 안드로이드 밧데리 전원 수명 오래쓰기 보안 최적화 끄기 끄는 방업 소개
admin
2018-01-02 12492
64 Notification에 관한 설명 자세한설명
admin
2019-03-01 12507
63 gcm 코딩 사례
admin
2018-01-09 12533
62 P is for Policy: Upcoming changes to Google Play
admin
2018-05-13 12549
61 안드로이드 android MediaPlayer how to work
admin
2018-01-16 12561
60 Uri to default sound notification?
admin
2018-02-03 12571
59 안드로이드 전화 수신 발신 이력조회 CALLLOG
admin
2018-09-10 12576
58 안드로이드 알람
admin
2018-02-23 12630
57 Improving app security and performance on Google Play for years to come
admin
2018-05-13 12652
56 How do I keep Wifi from disconnecting when phone is asleep?
admin
2018-01-02 12658
55 안드로이드 마쉬멜로우 버전 이상에서 권한처리하기.
admin
2018-09-06 12710
54 How to initialize default preferences for Settings in Android 초기값 설정
admin
2018-04-25 12756
53 android 9 startForeground requires android.permission.FOREGROUND_SERVICE
admin
2019-05-25 12759
52 안드로이드 버젼 별 특징 새로운 기능
admin
2018-01-02 12774
51 Gradle Wrapper를 통해 이용하기
admin
2018-05-07 12788
50 opensips Sipdroid Push notification how to
admin
2017-12-27 12834
49 Android Oreo의 알림 채널
admin
2018-12-10 12853
48 get path dir 함수 종합 정리
admin
2018-05-25 12865
47 Android 9 Pie 새로운기능
admin
2018-12-22 12870
46 Android 6.0(API 레벨 23)부터 사용자 런타임에 권한 요청
admin
2018-12-05 12886
45 WIFI_SLEEP_POLICY_NEVER how to set in API-17?
admin
2018-01-02 12927
44 사용자는 Settings > Battery > Battery Optimization에서 수동으로 허용 과 프로그램
admin
2018-01-01 12937
43 안드로이드 getDeviceId getImei MEID
admin
2018-12-28 12970
42 Android Contact APP with RecyclerView Part 1: Call Logs Example Android Studio
admin
2018-11-18 13011
41 Android-Oreo-Foreground-Service-Simple-Example 쉽고 정확한설명
admin
2018-12-22 13134
40 how do you import sound files like mp3 or waw files into android studio?
admin
2018-01-02 13140
39 안드로이드 : 컨텐트 제공자 (Content Provider) 연락처 데이터 ContentResolver 객체
admin
2018-11-21 13153
38 sdk-tools list
admin
2018-05-13 13197
37 Firebase용 Cloud 함수
admin
2018-04-26 13279
36 firebase로 손쉽게 android 앱에 로그인 추가하기
admin
2018-12-05 13281
35 안드로이드 사용자 주소록리스트 가져오기
admin
2018-06-16 13430
34 System Permission MODIFY_PHONE_STATE root device
admin
2018-12-08 13431
33 FCM PHP Curld
admin
2018-01-01 13515
32 Migrate a GCM Client App for Android to Firebase Cloud Messaging
admin
2017-12-04 13524
31 FCM 원하는 액티비티 이름을 알림을 요청 전송하여 액티비티 열리게
admin
2019-06-24 13545
30 unpublish an app in Google Play Developer Console 플레이스토어 앱 게시 삭제
admin
2018-05-21 13580
29 Doze 및 앱 대기 모드 최적화 GCM으로 Android M Doze 모드를 풀기
admin
2018-01-09 13609
28 [안드로이드 개발자 개발 ] 기본 스레드의 생명주기 관리 자세히 알아보기
admin
2018-01-16 13691
27 Android Drawable Resources Tutorial
admin
2018-12-05 13695
26 how to set CheckBoxPreference default value 체크박스 디폴트값 설정
admin
2018-05-16 13745
25 Firebase FCM 강제로 onTokenRefresh () 호출 [android] 서버로 json put token 전송
admin
2018-04-26 13794
24 Remote Notifications with Firebase Cloud Messaging
admin
2018-01-02 13866
23 안드로이드 마시맬로 6.0 이상의 런타임 권한
admin
2018-12-05 14085
22 안드로이드 개발자 개발 프로그램 7.0 누가 백그라운드 최적화
admin
2018-01-16 14143
21 Android 7.0 동작 변경 사항 밧데리 메모리 잠자기 모드
admin
2018-01-02 14145
20 동작 변경사항: API 레벨 28+를 대상으로 하는 앱 Android Pie
admin
2018-12-22 14540
19 Notification 을 사용 알림 지워지지 않고 여러개 표시 되게 하는 방법
admin
2018-05-11 14652
18 안드로이드 OREO 백그라운드 서비스 제한 대책
admin
2018-12-22 14687
17 Play Store to require new and updated apps to target recent API levels and distribute native apps with 64-bit support
admin
2018-05-13 14712
16 FCM 과 GCM 차이
admin
2018-01-01 14852
15 In favour of overriding onNewToken FirebaseMessagingService
admin
2018-12-22 14897
14 @Deprecated @Override 라는 어노테이션 사용 설명
admin
2018-06-16 15079
13 SMS 또는 통화 기록 사용 위험도 가 높거나 민감한 권한을 사용하는 것을 제한
admin
2018-11-18 15101
12 Doze 및 앱 대기 모드 최적화
admin
2018-01-01 15118
11 Service와 BroadcastReceiver로 스크린 화면 감지하기
admin
2018-01-07 15323
10 알림 애플리케이션의 정상 UI 외부에서 사용자에게 표시
admin
2018-01-05 15400
9 새로운 안드로이드 백그라운드 작업 처리법 : WorkManager
admin
2018-11-25 16115
8 Oreo 버전 이후 Foreground Service 사용 방법
admin
2018-12-22 16433
7 설정값 유지하기 ( SharedPreferences ) 쉽고 잘된설명
admin
2018-03-22 16979
6 Firebase Console의 Notification google android 구글 안드로이드 푸시
admin
2018-01-04 17044
5 안드로이드 앱 배터리 최적화 무시방법
admin
2018-01-02 17243
4 Runtime Permissions in Android Marshmallow 6.0 and above
admin
2018-12-05 18398
3 8.0 부터는 Notification Channel을 만들어 주기 하지 않으면 알림이 오지 않는다
admin
2018-05-11 18757
2 안드로이드 백 뒤로가기 버튼 back button of action bar in Android
admin
2018-12-24 20907
1 [Android] 배터리 최적화 대응하기: 도즈(Doze)와 어플 대기모드(App Standby)
admin
2018-01-02 25110