Android 個人財務工具五:顯示賬單明細 上_Android

來源:互聯網
上載者:User

前面我們已經將每個月的收支明細存入到SQLite的資料表中,本文將實現從SQLite的資料表中取出這些資料顯示為賬單明細介面。

       下圖是最終的效果圖:

       在設計該介面時我考慮過好幾個方案。本來準備使用一個gridview,因為覺得名字很像我需要的東西。可是後來查了一些資料,並且做了點實驗,發現和我想象的有些差距。於是採用了目前這種方式。使用Listview。

       這個介面布局實際上很簡單,就是上面一個表頭(Linearlayout),中間一個Listview,下面是一個腳註(Linearlayout)。

       如何?listview其中內容?這個主要就是要理解Adapter的用法。

       SimpleCursorAdapter(Context context, int layout, Cursor c, String[] from, int[] to)

Java代碼

String[] from=new String[] {"rowid","name", "fee","sdate","desc" }; int[] to=new int[] { R.id.item1, R.id.item2,R.id.item3,R.id.item4,R.id.item5 }; SimpleCursorAdapter mAdapter=new SimpleCursorAdapter(this,R.layout.grid_items, cur,from, to); lv.setAdapter(mAdapter); 

       這裡我們只需要準備好view的樣式和cursor就可以了。

       例如本例中的

       R.layout.grid_items是

XML/HTML代碼

<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  android:orientation="horizontal" android:layout_width="fill_parent"  android:layout_height="fill_parent">  <TextView android:id="@+id/item1" android:layout_height="fill_parent"  android:layout_width="wrap_content" android:width="20dip"  />  <TextView android:id="@+id/item2"  android:layout_height="fill_parent"  android:text="賬目"  android:width="60dip" android:layout_width="wrap_content"/>  />  <TextView android:id="@+id/item3"  android:text="費用(元)"  android:textSize="14dip" android:width="60dip" android:layout_width="wrap_content"  android:layout_height="fill_parent" android:textStyle="bold|italic"  />  <TextView android:id="@+id/item4"  android:layout_height="fill_parent"   android:text="日期"  android:width="80dip"  android:layout_width="wrap_content"  />  <TextView android:id="@+id/item5"  android:layout_height="fill_parent"   android:text="備忘"  android:width="100dip" android:layout_width="wrap_content"  />   </LinearLayout> 

       在Adapter中的to 參數中,指定這些TextView使用那些Cursor的值。

       我的cursor就是含有這些欄位"rowid","name","fee","sdate","desc"。

       準備好這些,使用lv.setAdapter(mAdapter)方法就可以綁定了。

       下面給出具體代碼檔案:

       Grid_bills.java

Java代碼

package com.cola.ui; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import android.app.Activity; import android.database.Cursor; import android.os.Bundle; import android.util.Log; import android.view.KeyEvent; import android.view.View; import android.widget.AbsoluteLayout; import android.widget.EditText; import android.widget.GridView; import android.widget.LinearLayout; import android.widget.ListView; import android.widget.SimpleCursorAdapter; import android.widget.TextView; public class Grid_bills extends Activity {  BilldbHelper billdb;  View sv;  EditText edit;  AbsoluteLayout alayout;  int a=10,b=10;  GridView grd;   TextView total;   protected GridView listHands = null ;  public void onCreate(Bundle icicle) {  super.onCreate(icicle);  setTitle("ColaBox-賬單明細(2008-11月)");   setContentView( R.layout.grid_bills) ;  billdb = new BilldbHelper(this);  Cursor cur=billdb.getBills();  ListView lv=(ListView)findViewById(R.id.listview);  String[] from=new String[] {"rowid","name", "fee","sdate","desc" };  int[] to=new int[] { R.id.item1, R.id.item2,R.id.item3,R.id.item4,R.id.item5 };  SimpleCursorAdapter mAdapter=new SimpleCursorAdapter(this,R.layout.grid_items, cur,from, to);  lv.setAdapter(mAdapter);    //getBillsTotal  total=(TextView)findViewById(R.id.totalitem);  total.setText(billdb.getBillsTotal("2008-11"));  } 

       grid_item.xml

XML/HTML代碼

<?xml version="1.0" encoding="utf-8"?> <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"  android:orientation="vertical"  android:layout_height="fill_parent" android:layout_width="fill_parent"> <LinearLayout android:id="@+id/LinearLayout01" xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_height="fill_parent" android:layout_width="fill_parent">  <LinearLayout android:id="@+id/layouthead"  android:background="#ffCded8b" android:layout_height="fill_parent" android:layout_width="fill_parent" android:focusable="true" android:clickable="true" android:focusableInTouchMode="true" android:keepScreenOn="true">  <TextView android:id="@+id/item1" android:layout_height="fill_parent"  android:layout_width="wrap_content" android:width="20dip"  />  <TextView android:id="@+id/item2"  android:layout_height="fill_parent"  android:text="賬目"  android:textStyle="bold" android:width="60dip" android:layout_width="wrap_content"/>  />  <TextView android:id="@+id/item3"  android:text="費用(元)"  android:textSize="14dip" android:textStyle="bold" android:width="60dip" android:layout_width="wrap_content"  android:layout_height="fill_parent"/>  <TextView android:id="@+id/item4"  android:layout_height="fill_parent"   android:text="日期"  android:textSize="14dip" android:textStyle="bold" android:width="80dip" android:layout_width="wrap_content"  />  <TextView android:id="@+id/item5"  android:layout_height="fill_parent"   android:text="備忘"  android:textSize="14dip" android:textStyle="bold" android:width="100dip" android:layout_width="wrap_content"  />  </LinearLayout>  <View android:layout_width="fill_parent" android:layout_height="1dip" android:background="?android:attr/listDivider"/>  <LinearLayout android:id="@+id/layout" android:layout_width="wrap_content" android:layout_height="fill_parent" android:minHeight="372dip">   <ListView android:id="@+id/listview" android:layout_height="fill_parent" android:layout_width="fill_parent"></ListView> </LinearLayout>  <LinearLayout android:id="@+id/layoutfoot"  android:layout_width="fill_parent"  android:layout_height="wrap_content" android:background="#ffCded8b">    <TextView android:id="@+id/totalitem"  android:layout_height="fill_parent"  android:text="當月收入:2009.33 支出:3000.87 小計:-1000.9"  android:textStyle="bold" android:layout_width="fill_parent" />  />    </LinearLayout>  </LinearLayout> </ScrollView> 

       這次我在sqlite的sql上面遇到點麻煩,目前還沒搞定,就是我儲存在資料庫中的費用是int型,分為單位。我從資料庫中取出來是 select fee/100 from bills ;但是顯示的卻是取整後的數值。

       不知道正確文法應該是什麼樣子,後面我想拼成字元顯示應該可以,我就試了 select fee/100||'' from bills;,這樣就可以在listview上面輸出小數。可是我發現999999.99/100 輸出卻是1000000。我在adb shell裡面查詢還是999999.99,到了listview時就變成了1000000,我估計可能是Adapter 裡面的字元取出來用了getString的方法。

              系列文章:

                       Android 個人財務工具六:顯示賬單明細 下

                       Android 個人財務工具五:顯示賬單明細 上

                       Android 個人財務工具四:添加賬單頁面 下

                       Android 個人財務工具三:添加賬單頁面 上

                       Android 個人財務工具二:使用SQLite實現啟動時初始化資料

                       Android 個人財務工具一:項目概述與啟動介面的實現

           以上就是關於顯示賬單明細的功能實現,後續繼續添加相關功能,謝謝大家對本站的支援!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.