2

現場の技術者の作業指示を処理する Android アプリに取り組んでいます。まず、アプリのレイアウトについて説明します。アプリ
の主要部分には 3 つのタブが含まれています。

タブ 1 - ホーム タブ
- 開いている現在のワークオーダーの概要が含まれています

タブ 2 - 割り当てられた作業指示書タブ
- ログインしたユーザーに現在割り当てられている作業指示書のリストが含まれています

タブ 3 - 割り当てられていない作業指示書タブ
- ユーザーのクルーに割り当てられている作業指示書のリストが含まれていますが、特定の人には割り当てられていません。

アプリ全体からアクセスできるように、Application コンテキストの一部である Singleton クラスである「Database」というクラスを使用します。以下にいくつかのコードを含めます

問題は次のとおりです。
ユーザーがリスト内の特定の作業指示書をクリックすると、作業指示書の詳細アクティビティが起動し、作業指示書に関するあらゆる種類の情報が表示されます。ワークオーダーが「割り当てられていない」ものである場合、「所有者」フィールドを現在のユーザーに変更し、それを未割り当てリストから削除し、そのユーザーの割り当て済みリストに追加する「所有権を取得」ボタンも表示されます。ただし、ユーザーが [戻る] ボタンを押して作業指示の詳細画面 (アクティビティ) を閉じ、タブ ビューに戻ると、何らかの方法でビューを強制的に更新するまで (リストをさらに下にスクロールするなど)、リストは更新されません。所有権を変更した作業指示書が画面外にあることを確認します)。

私は試し
ました: -カスタムListAdapterをデータベース(シングルトン)クラスに移動し、そこからアクセスします -リストアダプタで「notifyDataSetChanged()」を呼び出します

タブが選択されるたびに更新する方法についてのアイデアはありますか (または、戻るボタンを押して作業指示書の詳細画面を閉じます)? 私は解決策を見つけようとインターネットを精査してきましたが、見つけたものは何もうまくいきませんでした。

よろしくお願いします。以下に関連するコードを含めました。

データベース クラス:

public class Database extends Application {
    private static Database instance = null;    
    private ArrayList<Workorder> assignedwolist;
    private ArrayList<Workorder> unassignedwolist;
    private Credentials creds;
    private WOListAdapter assignedadapter;
    private WOListAdapter unassignedadapter;

    private static void checkInstance() {
        if(instance==null) {
            throw new IllegalStateException("Database class not created yet!");
        }
    }

    @Override
    public void onCreate() {
        super.onCreate();
        instance=this;
    }

    public Database() {
        this.creds=null;
        this.assignedwolist = getAssignedWorkorders();
        this.unassignedwolist = getUnassignedWorkorders();
        this.assignedadapter=new WOListAdapter(this,getAssignedWorkorders());
        this.unassignedadapter=new WOListAdapter(this,getUnassignedWorkorders());
    }

    public ArrayList<String> getSummary() {
        int numassigned = assignedwolist.size();
        int assignedp1 = 0;
        for(Workorder wo:assignedwolist) {
            if(wo.getPriority().equalsIgnoreCase("1")) {
                assignedp1++;
            }
        }
        int numunassigned = unassignedwolist.size();
        int unassignedp1 = 0;
        for(Workorder wo:unassignedwolist) {
            if(wo.getPriority().equalsIgnoreCase("1")) {
                unassignedp1++;
            }
        }
        ArrayList<String> summary = new ArrayList<String>();
        summary.add(Integer.toString(numassigned));
        summary.add(Integer.toString(assignedp1));
        summary.add(Integer.toString(numunassigned));
        summary.add(Integer.toString(unassignedp1));
        return summary;
    }

    public Workorder getWO(String id) {
        for(Workorder wo:assignedwolist) {
            if(wo.getId().equalsIgnoreCase(id)) {
                return wo;
            }
        }
        for(Workorder wo:unassignedwolist) {
            if(wo.getId().equalsIgnoreCase(id)) {
                return wo;
            }
        }
        return null;
    }

    public ArrayList<Workorder> getAssignedWorkorders() {
        return assignedwolist;
    }

    public ArrayList<Workorder> getUnassignedWorkorders() {
        return unassignedwolist;
    }

    public void setValidated(boolean validated) {
        this.validated = validated;
    }

    public boolean isValidated() {
        return validated;
    }

    public void takeOwnership(String wonum) {
        Workorder wo;
        for(int i=0;i<unassignedwolist.size();i++) {
            if(unassignedwolist.get(i).getId().equalsIgnoreCase(wonum)) {
                wo = unassignedwolist.remove(i);
                wo.setOwner(creds.getUsername());
                assignedwolist.add(wo);
                Collections.sort(assignedwolist);
                return;
            }
        }
        this.assignedadapter.notifyDataSetChanged();
        this.unassignedadapter.notifyDataSetChanged();
    }

    public WOListAdapter getAssignedAdapter() {
        return assignedadapter;
    }

    public WOListAdapter getUnassignedAdapter() {
        return unassignedadapter;
    }
}

メイン アプリ (タブを含む):

public class MainApp extends TabActivity {


    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {  
        super.onCreate(savedInstanceState);     
        setContentView(R.layout.tab);

        /*Tab host for tabs */
        TabHost tabHost = (TabHost)findViewById(android.R.id.tabhost);// The activity TabHost

        TabSpec hometabspec = tabHost.newTabSpec("Home");
        TabSpec assignedtabspec = tabHost.newTabSpec("Assigned");
        TabSpec unassignedtabspec = tabHost.newTabSpec("Unassigned");

        hometabspec.setIndicator("Home",getResources().getDrawable(R.drawable.ic_tab_home)).setContent(new Intent(this,HomeActivity.class));        
        assignedtabspec.setIndicator("Assigned",getResources().getDrawable(R.drawable.ic_tab_assigned)).setContent(new Intent(this,AssignedActivity.class));
        unassignedtabspec.setIndicator("Unassigned",getResources().getDrawable(R.drawable.ic_tab_unassigned)).setContent(new Intent(this,UnassignedActivity.class));

        tabHost.addTab(hometabspec);
        tabHost.addTab(assignedtabspec);
        tabHost.addTab(unassignedtabspec);
        tabHost.getTabWidget().setCurrentTab(0);
    }
}

割り当てられたアクティビティ:

public class AssignedActivity extends Activity {


    /** Called when the activity is first created. */
    @Override   
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        Database db = (Database)getApplicationContext();
        setContentView(R.layout.wolist);
        ListView listview =(ListView)findViewById(R.id.wolistview);
        listview.setTextFilterEnabled(false);

        WOListAdapter wolistadapter = db.getAssignedAdapter();
        listview.setAdapter(wolistadapter);
        listview.setOnItemClickListener(new OnItemClickListener() {
            @Override
            public void onItemClick(AdapterView<?> adapterview, View view, int position,
                    long arg3) {
                Workorder wo = (Workorder)adapterview.getItemAtPosition(position);
                Intent i = new Intent();
                i.setClass(AssignedActivity.this,WorkorderDetailActivity.class);
                i.putExtra("wonum",wo.getId());
                startActivity(i);
            }
        });
    } 
}

割り当てられていないアクティビティ:

public class UnassignedActivity extends Activity {


    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        Database db = (Database)getApplicationContext();
        setContentView(R.layout.wolist);
        ListView listview =(ListView)findViewById(R.id.wolistview);
        listview.setTextFilterEnabled(false);

        WOListAdapter wolistadapter = db.getUnassignedAdapter();
        listview.setAdapter(wolistadapter);
        listview.setOnItemClickListener(new OnItemClickListener() {
            @Override
            public void onItemClick(AdapterView<?> adapterview, View view, int position,
                    long arg3) {
                Workorder wo = (Workorder)adapterview.getItemAtPosition(position);
                Intent i = new Intent();
                i.setClass(UnassignedActivity.this,WorkorderDetailActivity.class);
                i.putExtra("wonum",wo.getId());
                startActivity(i);
            }
        });
    }
}

WorkorderDetailActivity:

public class WorkorderDetailActivity extends Activity {
    /** Called when the activity is first created. */
    @Override   
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        Database db = (Database)getApplicationContext();
        final Workorder wo;
        Bundle extras = getIntent().getExtras();
        if(extras!=null) {
            //Set Fields
            wo = db.getWO(extras.getString("wonum"));
            setContentView(R.layout.wodetail);
            TextView tv=(TextView)findViewById(R.id.wonumview);
            tv.setTextSize(20);
            tv.setText(wo.getId());
            tv=(TextView)findViewById(R.id.wodescriptionview);
            tv.setTextSize(18);
            tv.setText(wo.getDescription());
            tv=(TextView)findViewById(R.id.wolocationview);
            tv.setTextSize(18);
            tv.setText(wo.getLocation());
            tv=(TextView)findViewById(R.id.wostatusview);
            tv.setTextSize(18);
            tv.setText(wo.getStatus());
            tv=(TextView)findViewById(R.id.woreporteddateview);
            tv.setTextSize(18);
            tv.setText(wo.getReportdate().substring(0, 19));
            tv=(TextView)findViewById(R.id.wotypeview);
            tv.setTextSize(18);
            tv.setText(wo.getType());

            //Assigned or Unassigned adjustments
            tv=(TextView)findViewById(R.id.woownerview);
            Button b = (Button)findViewById(R.id.TakeOwnershipButton);
            if(wo.getOwner().equalsIgnoreCase("none")) { //Display TakeOwnership button
                b.setOnClickListener(new View.OnClickListener() {
                    @Override
                    public void onClick(View v) {
                        Database db = (Database)getApplicationContext();
                        db.takeOwnership(wo.getId());
                        Button b = (Button)findViewById(R.id.TakeOwnershipButton);
                        TextView tv=(TextView)findViewById(R.id.woownerview);
                        b.setVisibility(View.INVISIBLE);
                        tv.setVisibility(View.VISIBLE);
                        tv.setTextSize(18);
                        tv.setText(wo.getOwner());
                    }
                });
                b.setVisibility(View.VISIBLE);
                tv.setVisibility(View.INVISIBLE);
            } else { //Display owner
                b.setVisibility(View.INVISIBLE);
                tv.setVisibility(View.VISIBLE);
                tv.setTextSize(18);
                tv.setText(wo.getOwner());
            }

            //Icon color adjustment based on priority
            ImageView icon = (ImageView)findViewById(R.id.woiconview);
            switch(wo.getPriorityNum()) {
                case 1: icon.setColorFilter(Color.RED); break;
                case 2: icon.setColorFilter(Color.YELLOW); break;
                case 3: icon.setColorFilter(Color.GREEN); break;
                case 4: icon.setColorFilter(Color.BLUE); break;
                default: icon.setColorFilter(Color.TRANSPARENT); break;
            }

            //Status change options
            Spinner s = (Spinner)findViewById(R.id.wostatusselector);
            ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, android.R.layout.simple_spinner_item, db.getValidStatuses(wo.getStatus()));
            adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
            s.setAdapter(adapter);

        } else { //No wonum was passed in!
            TextView tv = new TextView(this);
            tv.setText("Error Retrieving Workorder");
            setContentView(tv);
        }
    }
}
4

1 に答える 1

2

setOnTabChanged()を使用してGoogle Analyticsを更新し、AdMobに新しい追加をリクエストします。

tabHost.setOnTabChangedListener(new OnTabChangeListener(){
            public void onTabChanged(String tabId) {
                tracker.dispatch();
                adView.requestFreshAd();
            }});
于 2011-04-22T03:27:22.390 に答える