91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Android中EfficientAdapte如何使用

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

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

Android ListView之EfficientAdapte的使用詳解

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

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

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

    簡要說明:要實現高效的Adapter,需要做兩件事: 

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

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

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

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>

    官網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"}; 
}

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

向AI問一下細節

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

AI

舞阳县| 南充市| 郁南县| 文化| 晋中市| 德安县| 东台市| 闵行区| 五原县| 修文县| 克山县| 石嘴山市| 虞城县| 防城港市| 河津市| 南靖县| 台湾省| 铁力市| 湖口县| 南岸区| 科技| 社会| 台北市| 迁安市| 罗城| 佛坪县| 宜良县| 临洮县| 鄂温| 山西省| 尼木县| 万州区| 沭阳县| 姜堰市| 紫阳县| 明溪县| 宜昌市| 长子县| 东丽区| 靖安县| 鹤峰县|