| | |
| | | import android.widget.ListView; |
| | | import android.widget.Toast; |
| | | |
| | | import com.anyun.exam.lib.MyLog; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.EventListener; |
| | | import java.util.List; |
| | |
| | | return view; |
| | | } |
| | | private void initView(View view) { |
| | | |
| | | sendRTKConfig2RemoteService(); |
| | | mListView = view.findViewById(R.id.lv); |
| | | mListView.setFocusable(false);//listview不获取焦点,不然的话scrollview会顶到底部 |
| | | view.findViewById(R.id.view_map).setOnClickListener(this); |
| | |
| | | mListView.addHeaderView(LayoutInflater.from(_mActivity).inflate(R.layout.layout_score_item,null)); |
| | | |
| | | |
| | | |
| | | } |
| | | |
| | | private void sendRTKConfig2RemoteService() { |
| | | MyLog.d(TAG,"主动推送RTKConfig"); |
| | | CEventCenter.dispatchEvent(Constant.BIND_RTKCONFIG_TOPIC,Constant.PUSH_RTK_PLATFORM_INFO,0,""); |
| | | } |
| | | |
| | | @Override |