使い方はこんな感じでコンストラクタをpublicにして継承します。
class SampleThread : public CWinThread
{
public :
SampleThread()
... 略 ...
それから、
SampleThread * pThread = new SampleThread(); pThread->CreateThread();
サンプルコードはこんな感じ
Uri uri = Uri.parse("http://blog.rabisoft.com/feed");
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.addCategory(Intent.CATEGORY_DEFAULT);
intent.setType("application/rss+xml");
intent.putExtra(Intent.EXTRA_STREAM, uri);
try {
startActivity(intent);
} catch ( ActivityNotFoundException e ) {
// Error .
}