溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android中EfficientAdapte如何使用

發(fā)布時間:2021-06-26 16:48:31 來源:億速云 閱讀:106 作者:Leah 欄目:移動開發(fā)

今天就跟大家聊聊有關(guān)Android中EfficientAdapte如何使用,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。

Android ListView之EfficientAdapte的使用詳解

在做Android手機應用開發(fā)時, ListView是一個非常常用的控件。如何更新的使用它呢?其實SDK中的例子已經(jīng)非常的完整了,并且能滿足大多數(shù)的需要。

    如果大家剛開始學習ListView,我建議大家還是直接先看官方的例子好了,這樣大家會學到更好的寫法以及養(yǎng)成更好的習慣。

    下面就以EfficientAdapter為例,看看官網(wǎng)例子是如何使用ListView的:

    簡要說明:要實現(xiàn)高效的Adapter,需要做兩件事: 

    1. 重用getView()中的convertView,避免在不必要的時候inflating View。 

    2. 使用ViewHolder模式,避免在不必要的時候調(diào)用findViewById()。

    順便再提一句:若繼承的是ListActivity,如果在layout xml里定義了ListView,那么該ListView的ID必須是"@id/android:list",最好再包含一個ID是"@id/android:empty"的TextView,供ListView中沒有數(shù)據(jù)時,顯示提示文字用。如下所示:

Xml代碼 

<?xml version="1.0" encoding="utf-8"?> 
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
     android:orientation="vertical" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:paddingLeft="8dp" 
     android:paddingRight="8dp"> 
 
   <ListView android:id="@id/android:list" 
        android:layout_width="match_parent" 
        android:layout_height="match_parent" 
        android:background="#00FF00" 
        android:layout_weight="1" 
        android:drawSelectorOnTop="false"/> 
 
   <TextView android:id="@id/android:empty" 
        android:layout_width="match_parent" 
        android:layout_height="match_parent" 
        android:background="#FF0000" 
        android:text="No data"/> 
 </LinearLayout>

    官網(wǎng)EfficientAdapter例子如下:

Java代碼 

/** 
 * Demonstrates how to write an efficient list adapter. The adapter used in this example binds 
 * to an ImageView and to a TextView for each row in the list. 
 * 
 * To work efficiently the adapter implemented here uses two techniques: 
 * - It reuses the convertView passed to getView() to avoid inflating View when it is not necessary 
 * - It uses the ViewHolder pattern to avoid calling findViewById() when it is not necessary 
 * 
 * The ViewHolder pattern consists in storing a data structure in the tag of the view returned by 
 * getView(). This data structures contains references to the views we want to bind data to, thus 
 * avoiding calls to findViewById() every time getView() is invoked. 
 */ 
public class List14 extends ListActivity { 
 
  private static class EfficientAdapter extends BaseAdapter { 
    private LayoutInflater mInflater; 
    private Bitmap mIcon1; 
    private Bitmap mIcon2; 
 
    public EfficientAdapter(Context context) { 
      // Cache the LayoutInflate to avoid asking for a new one each time. 
      mInflater = LayoutInflater.from(context); 
 
      // Icons bound to the rows. 
      mIcon1 = BitmapFactory.decodeResource(context.getResources(), R.drawable.icon48x48_1); 
      mIcon2 = BitmapFactory.decodeResource(context.getResources(), R.drawable.icon48x48_2); 
    } 
 
    /** 
     * The number of items in the list is determined by the number of speeches 
     * in our array. 
     * 
     * @see android.widget.ListAdapter#getCount() 
     */ 
    public int getCount() { 
      return DATA.length; 
    } 
 
    /** 
     * Since the data comes from an array, just returning the index is 
     * sufficent to get at the data. If we were using a more complex data 
     * structure, we would return whatever object represents one row in the 
     * list. 
     * 
     * @see android.widget.ListAdapter#getItem(int) 
     */ 
    public Object getItem(int position) { 
      return position; 
    } 
 
    /** 
     * Use the array index as a unique id. 
     * 
     * @see android.widget.ListAdapter#getItemId(int) 
     */ 
    public long getItemId(int position) { 
      return position; 
    } 
 
    /** 
     * Make a view to hold each row. 
     * 
     * @see android.widget.ListAdapter#getView(int, android.view.View, 
     *   android.view.ViewGroup) 
     */ 
    public View getView(int position, View convertView, ViewGroup parent) { 
      // A ViewHolder keeps references to children views to avoid unneccessary calls 
      // to findViewById() on each row. 
      ViewHolder holder; 
 
      // When convertView is not null, we can reuse it directly, there is no need 
      // to reinflate it. We only inflate a new View when the convertView supplied 
      // by ListView is null. 
      if (convertView == null) { 
        convertView = mInflater.inflate(R.layout.list_item_icon_text, null); 
 
        // Creates a ViewHolder and store references to the two children views 
        // we want to bind data to. 
        holder = new ViewHolder(); 
        holder.text = (TextView) convertView.findViewById(R.id.text); 
        holder.icon = (ImageView) convertView.findViewById(R.id.icon); 
 
        convertView.setTag(holder); 
      } else { 
        // Get the ViewHolder back to get fast access to the TextView 
        // and the ImageView. 
        holder = (ViewHolder) convertView.getTag(); 
      } 
 
      // Bind the data efficiently with the holder. 
      holder.text.setText(DATA[position]); 
      holder.icon.setImageBitmap((position & 1) == 1 ? mIcon1 : mIcon2); 
 
      return convertView; 
    } 
 
    static class ViewHolder { 
      TextView text; 
      ImageView icon; 
    } 
  } 
 
  @Override 
  public void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setListAdapter(new EfficientAdapter(this)); 
  } 
 
  private static final String[] DATA = { 
      "Abbaye de Belloc", "Abbaye du Mont des Cats", "Abertam"}; 
}

看完上述內(nèi)容,你們對Android中EfficientAdapte如何使用有進一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI