这次讲一个关于商品展示的小案例。这个案例主要是在将商品在界面中展示出来,并且可以对商品进行增、删、改、查等一系列操作。实现这些功能主要运用到ListView和SQLite数据库。下面我就具体来讲一下实现过程。
一、主布局文件(activity— main.xml)
布局的具体代码如下:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/activity_main" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:layout_margin="8dp" tools:context="com.example.bz0209.shopping.MainActivity"> <LinearLayout android:id="@+id/addLL" android:orientation="horizontal" android:layout_width="match_parent" android:layout_height="wrap_content"> <EditText android:id="@+id/nameET" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:hint="商品名称" android:inputType="textPersonName"/> <EditText android:id="@+id/balanceET" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:hint="金额" android:inputType="textPersonName" /> <ImageView android:onClick="add" android:layout_width="wrap_content" android:layout_height="wrap_content" app:srcCompat="@android:drawable/ic_input_add" android:id="@+id/addIV" /> </LinearLayout> <ListView android:id="@+id/accountLV" android:layout_width="match_parent" android:layout_height="match_parent" /> </LinearLayout>二、关于ListView的布局文件:
对布局内空间进行具体设置,具体代码如下:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal" android:padding=