zoukankan      html  css  js  c++  java
  • 十天冲刺(第一阶段)

    今天学习了相关的数据库操作以及页面的跳转实验了一下再界面上简单的输出一下所求的数据,为下一步整合数据进行相关操作做铺垫:,比原生的一些东西要好用效率高太多

    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
            View view = inflater.inflate(R.layout.si_fragment,container,false);
            mDatabaseHelper = new DatabaseHelper(getActivity());
            mCostBeanList = new ArrayList<>();
             mTextView = view.findViewById(R.id.textView);
             button = view.findViewById(R.id.button2);
             editText = view.findViewById(R.id.editText2);
             button.setOnClickListener(new View.OnClickListener() {
                 @Override
                 public void onClick(View v) {
                     String i = editText.getText().toString();
                     Cursor cursor =mDatabaseHelper.selectlist(i);
                     if (cursor != null){
                         while (cursor.moveToNext()){
                             CostBean costBean = new CostBean();
                             costBean.costTitle = cursor.getString(cursor.getColumnIndex("cost_title"));
                             costBean.costDate = cursor.getString(cursor.getColumnIndex("cost_date"));
                             costBean.costMoney = cursor.getString(cursor.getColumnIndex("cost_money"));
                             mCostBeanList.add(costBean);

                         }
                 }
                     String s = "";
                     for(int j = 0;j<mCostBeanList.size();j++){
                         s += mCostBeanList.get(j).getCostTitle();
                     }
                     mTextView.setText(s);
                 }
             });
            return view;
        }
  • 相关阅读:
    python学习笔记3:基础(元组、字符串、列表、字典)
    python学习笔记2:基础(邮件发送)
    pycharm版本控制
    Pycharm版本控制之本地Git用法
    GitHub使用
    qtp简单说明
    查询Activity方便一点的方法
    appium基础框架
    loadrunner基本流程
    python下的unittest框架
  • 原文地址:https://www.cnblogs.com/guziteng1/p/13043843.html
Copyright © 2011-2022 走看看