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;
        }
  • 相关阅读:
    Apache配置
    linux centos使用xrdp远程界面登陆
    实现台式机redhat6.4无线网卡上网RTL8188CUS
    linux-redhat6.4驱动无线网卡rtl8188eu
    linux开机自动连接无线网络
    javascript for循环 日期 select
    amazeui折叠面板智能化展开
    PHP Ueditor 富文本编辑器
    vue.js 使用小结
    php mysqli mysqli_query() mysqli_real_query()
  • 原文地址:https://www.cnblogs.com/guziteng1/p/13043843.html
Copyright © 2011-2022 走看看