2019-05-28 23:57:05 +08:00
|
|
|
package com.novelbook.android;
|
|
|
|
|
|
|
|
import android.support.v7.app.AppCompatActivity;
|
|
|
|
import android.os.Bundle;
|
2019-06-14 23:45:09 +08:00
|
|
|
import android.text.TextUtils;
|
|
|
|
import android.widget.TextView;
|
|
|
|
|
|
|
|
import com.novelbook.android.utils.Constants;
|
|
|
|
|
|
|
|
import butterknife.BindView;
|
2019-05-28 23:57:05 +08:00
|
|
|
|
|
|
|
public class ActivityAnounce extends Activity_base {
|
|
|
|
|
2019-06-14 23:45:09 +08:00
|
|
|
@BindView(R.id.tvAnnounce)
|
|
|
|
TextView tvAnnounce;
|
2019-05-28 23:57:05 +08:00
|
|
|
@Override
|
|
|
|
public int getLayoutRes() {
|
|
|
|
return R.layout.activity_anounce;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void initViews() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void setTitle() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void initData() {
|
2019-06-14 23:45:09 +08:00
|
|
|
if(TextUtils.isEmpty(Constants.DECLARE.trim())){
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
tvAnnounce.setText(Constants.DECLARE);
|
2019-05-28 23:57:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void fillData() {
|
|
|
|
|
|
|
|
}
|
2019-06-24 22:34:53 +08:00
|
|
|
|
|
|
|
|
2019-05-28 23:57:05 +08:00
|
|
|
}
|