eatwhatApp開發實戰(九)

來源:互聯網
上載者:User

標籤:

  之前我們為app在item項上添加了點擊出現修改對話方塊,對店名進行修改的功能,其中我們會發現我們點擊item和點擊item上的按鈕會有點擊衝突。這次我們來修正下這個問題,同時介紹item項的長按點擊OnItemLongClickListener()。  解決這個問題只需要修改對應item的xml檔案上的兩個屬性,首先是item的布局上的設定:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:orientation="vertical"    android:descendantFocusability="blocksDescendants" >
  其次是在點擊的button上進行修改:
<Button    android:id="@+id/item_btn"    android:layout_width="wrap_content"    android:layout_height="wrap_content"    android:layout_alignParentRight="true"    android:layout_centerInParent="true"    android:focusable="false"    android:clickable="true"    android:text="刪除"/>
  之後就可以對item和button進行不同的點擊處理:
@Overridepublic void onItemClick(AdapterView<?> arg0, View arg1, final int position,long id) {//item點擊事件 比如修改店名
  }
  button做刪除資料的操作:
btn.setOnClickListener(new OnClickListener() {    @Override    public void onClick(View arg0) {    //刪除資料的方法    });
  最後介紹下長按item的OnItemLongClickListener():
shop_lv.setOnItemLongClickListener(new itemLongClick());
  介面實現:
class itemLongClick implements OnItemLongClickListener{@Overridepublic boolean onItemLongClick(AdapterView<?> arg0, View arg1,int arg2, long arg3) {Log.e("OnItemLongClickListener","long clikc");return true;}}
  這樣就能實現item的長按對應功能。

eatwhatApp開發實戰(九)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.