从AsyncTask访问TextView(在片段内)

时间:2014-04-09 17:32:56

标签: java android android-fragments android-asynctask

首先,我是Android编程的新手,很抱歉,如果这看起来像一个愚蠢的问题,我仍然在努力让我不知所措!  我试图从我的onPostExecute()AsyncTask中更新片段中的TextView。 但我正在努力如何从布局中获取TextView并更新它。 我似乎能够动态创建TextView并更新它,但我想要一个我在xml布局中创建的textview。我在这里看到了大量类似的问题,但没有人使用片段(我正在尝试学习它的片段)。

您可以从下面的代码中看到,我首先尝试在代码中创建TextView(tv)(注释掉)并且运行正常。然后我尝试从布局中获取TextView((TextView)rootView.findViewById(R.id.tv2)),但因为我无法将其声明为公共字符串,所以我现在无法在onPostExecute中访问它( )。

我在做什么真的很傻吗?

public static class PlaceholderFragment extends Fragment {
    String str;
    //public TextView tv;
    public PlaceholderFragment() {
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        View rootView = inflater.inflate(R.layout.fragment_tug_boat_main,
                container, false);

        tv = (TextView)rootView.findViewById(R.id.tv2);
        //tv = new TextView(container.getContext());
        tv.setText("hi there");
        ReadExtPortfolio rext = new ReadExtPortfolio();
        rext.execute();
        return tv;
        //return rootView;

    }

    class ReadExtPortfolio extends AsyncTask<Void, Void, Void>
    {
        @Override
        protected void onPreExecute() {
            tv.setText("Fetching data, please wait: ");
        }
        @Override
        protected Void doInBackground(Void... arg0) {
            try {

                 URL url = new URL("http://mywebsite.com/andy.txt");
                 BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
                 str = in.readLine();
                 in.close();
               } catch (IOException e) {
                  str = "error";
                }
            return null;
        }

        // Executed on the UI thread after the
        // time taking process is completed
        @Override
        protected void onPostExecute(Void result) {
            super.onPostExecute(result);
            tv.setText("Completed the task, and the result is : " + str);
        }
    }   
}

XML文件(fragment_tug_boat_main)包含...

 <TextView
    android:id="@+id/tv2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/hello_world2" />

此外,我已经使用了stackoverflow多年,回答的人在这些年里节省了我数小时的工作。所以感谢阅读本文,感谢所有回答的人。

编辑: 对不起,我应该说。如果我取消注释“public TextView tv;”然后我得到一个运行时错误:指定的孩子已经有一个父。您必须首先在childs parent上调用removeView()。我不认为调用removeView()听起来是正确的,因为我的TextView上不存在removeView

1 个答案:

答案 0 :(得分:0)

您所要做的就是取消注释//公共TextView电视;然后你就可以在onPostExecute方法中使用它了。