/*
* Copyright (c) 2014. Marshal Chen.
*/
package com.marshalchen.common.demoofui.sampleModules;
import android.os.Bundle;
import com.marshalchen.common.demoofui.R;
import com.marshalchen.common.ui.HomeasUpActionbarActivity;
/**
* Created by cym on 14-8-2.
*/
public class FloatLabelActivity extends HomeasUpActionbarActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.float_label_activity);
}
}