安卓上機(jī)實驗05-模擬用戶注冊管理_第1頁
安卓上機(jī)實驗05-模擬用戶注冊管理_第2頁
安卓上機(jī)實驗05-模擬用戶注冊管理_第3頁
安卓上機(jī)實驗05-模擬用戶注冊管理_第4頁
安卓上機(jī)實驗05-模擬用戶注冊管理_第5頁
已閱讀5頁,還剩10頁未讀, 繼續(xù)免費閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報或認(rèn)領(lǐng)

文檔簡介

1、青 島 理 工 大 學(xué)課程實驗報告課程名稱嵌入式軟件設(shè)計與開發(fā)班級軟件132實驗日期2015.05.13姓名孫玉東學(xué)號17實驗成績實驗名稱模擬用戶注冊管理程序?qū)嶒災(zāi)康募耙笫煜ndroid常用控件的綜合使用方法:實現(xiàn)模擬用戶注冊管理功能實驗環(huán)境Win7, Eclipse實驗內(nèi)容屏幕分為上下2部分:上面輸入用戶基本信息,下面列表列出輸入的所有用戶信息,每行顯示一個用戶的基本信息。(1) 上面輸入用戶信息,點擊“增加”則將用戶信息加入下面的列表中;(2) 點擊列表中的一行,則選中該行,同時在上面顯示該行對應(yīng)的數(shù)據(jù);(3) 先點擊列表選中一行,然后點擊“刪除”,則刪除該行信息,同時選中下一行;(4

2、) 先點擊列表選中一行,然后修改上面的信息,再點擊“修改”,則將修改后的信息更新到列表中;(5) 在上面的控件中輸入要查詢的姓名,然后點擊“查詢”,則在下面的列表中選中對應(yīng)的行。參考界面如下圖:調(diào)試過程及實驗結(jié)果1.添加2.查詢3.修改4. 刪除總結(jié)1. 使用listView顯示數(shù)據(jù),填充數(shù)據(jù)類型為ArrayListHashMap,適配器類型選的BaseAdapter。2. 在刪除某一行,讓其選中下一行時,用listView.getChildAt(position).setBackgroundColor(Color.RED);得到下一行的view對象并設(shè)置背景顏色3. 用一個全局變量locat

3、ion記錄當(dāng)前選中行所在的位置。4. 在改變data中得值后要使用 adapter.notifyDataSetChanged();刷新一下數(shù)據(jù)。附錄public class MainActivity extends FragmentActivity InjectView(R.id.ed_name) EditText edName; InjectView(R.id.rb_sex_boy) RadioButton rbSexBoy; InjectView(R.id.rb_sex_gril) RadioButton rbSexGril; InjectView(R.id.ed_age) EditTex

4、t edAge; InjectView(R.id.cb_read) CheckBox cbRead; InjectView(R.id.cb_walk) CheckBox cbWalk; InjectView(R.id.cb_movie) CheckBox cbMovie; InjectView(R.id.lv_content) ListView lvContent; InjectView(R.id.bt_add) Button btAdd; InjectView(R.id.bt_update) Button btUpdate; InjectView(R.id.bt_delete) Button

5、 btDelete; InjectView(R.id.bt_select) Button btSelect;private Myadapter myadapter; private int currentposition; Override protected void onCreate(Bundle savedInstanceState) super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); ButterKnife.inject(this); initdata(); private void i

6、nitdata() peoples = new ArrayList(); myadapter=new Myadapter(); lvContent.setAdapter(myadapter); lvContent.setOnItemClickListener(new AdapterView.OnItemClickListener() Override public void onItemClick(AdapterView parent, View view, int position, long id) currentposition=position;myadapter.notifyData

7、SetChanged(); edName.setText(peoples.get(position).getName(); if(peoples.get(position).getSex().equals(男) rbSexBoy.setChecked(true); else rbSexGril.setChecked(true); edAge.setText(peoples.get(position).getAge(); String hobby= peoples.get(position).getHobby(); String hobbys=hobby.split(、); for (Strin

8、g c: hobbys) if(c.equals(讀書) cbRead.setChecked(true); if(c.equals(散步) cbWalk.setChecked(true); if(c.equals(電影) cbMovie.setChecked(true); ); private class Myadapter extends BaseAdapter Override public int getCount() return peoples.size(); Override public Object getItem(int position) return peoples.ge

9、t(position); Override public long getItemId(int position) return position; Override public View getView(int position, View convertView, ViewGroup parent) ViewHolder holder=null; if (convertView = null) holder=new ViewHolder(); convertView= View.inflate(MainActivity.this, R.layout.people_item, null);

10、 holder.peopleTvName= (TextView) convertView.findViewById(R.id.people_tv_name); holder.peopleTvAge= (TextView) convertView.findViewById(R.id.people_tv_age); holder.peopleTvHaobby= (TextView) convertView.findViewById(R.id.people_tv_haobby); holder.peopleTvSex= (TextView) convertView.findViewById(R.id

11、.people_tv_sex); holder.llbackground= (LinearLayout) convertView.findViewById(R.id.ll_background); convertView.setTag(holder); else holder= (ViewHolder) convertView.getTag(); if(position=currentposition) /Toast.makeText(MainActivity.this,+currentposition,Toast.LENGTH_SHORT); System.out.println(curre

12、ntposition+當(dāng)前+position); holder.llbackground.setBackgroundColor(Color.GRAY); else holder.llbackground.setBackgroundColor(Color.WHITE); holder.peopleTvName.setText(peoples.get(position).getName(); holder.peopleTvSex.setText(peoples.get(position).getSex(); holder.peopleTvAge.setText(peoples.get(positi

13、on).getAge(); holder.peopleTvHaobby.setText(peoples.get(position).getHobby(); return convertView; private List peoples; OnClick(R.id.bt_add, R.id.bt_update, R.id.bt_delete, R.id.bt_select) public void onClick(View view) switch (view.getId() case R.id.bt_add: /添加數(shù)據(jù) People people = new People(); peopl

14、e.setName(edName.getText().toString(); people.setSex(rbSexBoy.isChecked() ? 男 : 女); people.setAge(edAge.getText().toString(); StringBuffer sb = new StringBuffer(); if (cbRead.isChecked() sb.append(讀書、); if (cbMovie.isChecked() sb.append(電影、); if (cbWalk.isChecked() sb.append(散步、); people.setHobby(sb

15、.toString(); peoples.add(people); myadapter.notifyDataSetChanged(); break; case R.id.bt_update: peoples.get(currentposition).setName(edName.getText().toString(); peoples.get(currentposition).setSex(rbSexBoy.isChecked() ? 男 : 女); peoples.get(currentposition).setAge(edAge.getText().toString(); StringB

16、uffer sbc = new StringBuffer(); if (cbRead.isChecked() sbc.append(讀書、); if (cbMovie.isChecked() sbc.append(電影、); if (cbWalk.isChecked() sbc.append(散步、); peoples.get(currentposition).setHobby(sbc.toString(); myadapter.notifyDataSetChanged(); break; case R.id.bt_delete: peoples.remove(currentposition); myadapter.notifyDataSetChanged(); break; case R.id.bt_select: String name=edName.getText().toString(); for(int i=0;ipeoples.size();i+) peoples.get(i).getName().equals(name); currentposition=i; System

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

最新文檔

評論

0/150

提交評論