我一直试图让我的进度条视图在我的文件扫描器应用程序中工作,但我完全被活动、服务、线程和处理程序的正确组合所困扰。
结构如下: 我的 Activity 包含一个水平样式的 ProgressBar。在菜单项单击时,我生成了一个服务,它 onCreate(),这是我希望能够更新进度条的地方。
我的问题:我错过了什么?
- Activity "a" (with ProgressBar)
2. "a".onOptionsItemSelected(): Spawn Service "b"
3. "b".onCreate(): Control the ProgressBar in "a" //这里是我的麻烦
进度条布局 (1):
<ProgressBar
style="?android:attr/progressBarStyleHorizontal"
android:layout_height="wrap_content"
android:max="100"
android:progress="0"
android:secondaryProgress="0"
android:layout_width="300px"
android:layout_marginLeft="10px"
android:id="@+id/progress_horizontal"
/>
"a".onOptionsItemSelected (2):
public boolean onOptionsItemSelected(MenuItem item)
{
if (svc == null)
{
android.util.Log.v("@@@@@@@@@@@@@@@@@@@@@", "starting");
svc = new Intent(this, DoScan.class);
// done in "a".onCreate()
// hmap = new HashMap();
// hmap.put("tv", tv);
svc.putExtra("hmap", hmap);
startService(svc);
}
break;
}
"b".onCreate() (3):
@Override
public void onCreate() {
super.onCreate();
//startThread();
TextView tv = (TextView) Peekaboo.hmap.get("tv");
tv.append("cocktail");
}