package com.jiuqi.ui.widget; import android.content.Context; import android.view.View; import android.view.ViewGroup; import android.widget.ImageView; import android.widget.RelativeLayout; import android.widget.TextView; import com.jqyd.uilib.R; /** * 标签和textview(为了配合带编辑框的) */ public class EditorTextViewThird1 extends EditorBase { public EditorTextViewThird1(Context context, Param param, ViewGroup parent){ super(context, param, parent); } /** * */ private static final long serialVersionUID = -3773925210814413470L; private TextView tvLabel; private TextView tvMiddle; private ImageView tvRight; private RelativeLayout mRelative; @Override public void doInit(){ View root = inflater.inflate(R.layout.logdetaltoright, mWrapper); tvLabel = (TextView)root.findViewById(R.id.BusinessdatetoText); tvMiddle = (TextView)root.findViewById(R.id.datetoText); tvRight = (ImageView)root.findViewById(R.id.timediatologbt); mRelative=(RelativeLayout) root.findViewById(R.id.logdetailroright_relativelayout); } @Override public TextView getLabel(){ return tvLabel; } @Override public TextView getInputWidget(){ return tvMiddle; } public ImageView getRightWidget(){ return tvRight; } public RelativeLayout getRelativeLayout(){ return mRelative; } }