WareHouseActivity.java
625 Bytes
package com.huaheng.wms;
import android.os.Bundle;
import com.huaheng.wms.adapter.WareHouseAdapter;
import com.huaheng.wms.login.WareHouseBean;
import com.huaheng.wms.model.CommonActivity;
import java.util.ArrayList;
public class WareHouseActivity extends CommonActivity {
private WareHouseAdapter adapter;
private ArrayList<WareHouseBean> mlist;
@Override
protected void initActivityOnCreate(Bundle savedInstanceState) {
super.initActivityOnCreate(savedInstanceState);
this.setTitle(getString(R.string.select_warehouse));
setContentView(R.layout.activity_warehouse);
}
}