XMLで静的に定義されている場合、フラグメント内のTextView要素を操作することができました。しかし、動的/プログラムで作成しようとすると、何も表示されません。私が抱えている問題の簡単な例を作成しました。
これは動作します。画面が更新されています。
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState)
{
View v = inflater.inflate(R.layout.hello_world, container, false);
TextView tv = (TextView)v.findViewById(R.id.text);
tv.setText("Fragment #" + mNum);
tv.setBackgroundDrawable(getResources().getDrawable(android.R.drawable.gallery_thumb));
return v;
}
これは動作しません。XMLファイルdiagtextvertical.xmlは単純に次のとおりです。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
</LinearLayout>
コードは次のとおりです。
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState)
{
//good View v = inflater.inflate(R.layout.diaglist, container, false);
View v = inflater.inflate(R.layout.diagverticaltext, container, false);
mycontainer = container;
LinearLayout l = (LinearLayout)inflater.inflate(R.layout.diagverticaltext, container, false);
TextView tv = new TextView(container.getContext());
tv.setText("Testing...");
l.addView(tv);
tv = new TextView(container.getContext());
tv.setText("Testing1...");
l.addView(tv);
tv = new TextView(container.getContext());
tv.setText("Testing2...");
l.addView(tv);
return v;
}
container.getContext()の代わりにgetActivity()を使用しようとしましたが、うまくいきませんでした。レイアウトを実際のビューインスタンスにマップする方法がはっきりしないことがあります。これは、アクティビティでこれを行うのとは異なります。
私の質問には2番目の部分があります。私の実際の目標は、ポーリングされたデータに基づいてビューを非同期に更新することです。そのため、自分のコールバックを呼び出すときに、ViewGroupとインフレーターをどのように入手するかが1つの質問です。