OnshellActivity.java 504 Bytes
package com.huaheng.wms.onshell;

import android.os.Bundle;

import com.huaheng.wms.R;
import com.huaheng.wms.model.CommonActivity;

import butterknife.ButterKnife;

public class OnshellActivity extends CommonActivity {

    @Override
    protected void initActivityOnCreate(Bundle savedInstanceState) {
        super.initActivityOnCreate(savedInstanceState);
        setContentView(R.layout.activity_on_shell);
        ButterKnife.bind(this);
        setTitle(getString(R.string.on_the_shelf));
    }
}