中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

android arrayadapter 適配器

發布時間:2020-08-06 09:25:39 來源:網絡 閱讀:573 作者:鄭傳余 欄目:移動開發

   今天講解的知識點是Arrayadapter這個類,這個是一個適配器,它實現的是Adapter接口,和它類似的有simpleadapter和baseadapter,其中simpleadapter這個類,大家千萬不要為它的名字忽悠了,其實這個類的功能非常強大,我先結合api把arrayadapter講好,大家學習另外類的時候就很簡單了,接下來,接下來就進入課程的講解


完成如下功能:

視頻播放地址:http://v.youku.com/v_show/id_XNzMzNTc2ODg0.html

如果有疑問,請發送到我的郵箱:whsgzcy@foxmail.com

用戶輸入,點擊確定,再次輸入,任一次數,點擊顯示,在按鈕地下,顯示輸入的數據;

android arrayadapter 適配器


package com.example.text111;  
  
import java.util.ArrayList;  
import java.util.List;  
  
import android.os.Bundle;  
import android.app.Activity;  
import android.view.Menu;  
import android.view.View;  
import android.view.View.OnClickListener;  
import android.widget.ArrayAdapter;  
import android.widget.Button;  
import android.widget.EditText;  
import android.widget.ListView;  
  
public class MainActivity extends Activity {  
      
    private ListView list;  
    private Button btn_write, btn_show;  
    private EditText ed_content;  
    private ArrayAdapter<String> adpter1;  
    private List<String> ll;  
  
    @Override  
    protected void onCreate(Bundle savedInstanceState) {  
        super.onCreate(savedInstanceState);  
        setContentView(R.layout.activity_main);  
          
        list = (ListView)findViewById(R.id.list);  
        ed_content = (EditText)findViewById(R.id.ed_content);  
        btn_write = (Button)findViewById(R.id.btn_write);  
        btn_show = (Button)findViewById(R.id.btn_show);  
          
        ll = new ArrayList<String>();  
          
        btn_write.setOnClickListener(new OnClickListener() {      
            @Override  
            public void onClick(View arg0) {  
                  
                ll.add(ed_content.getText().toString());  
                ed_content.setText("");  
                ed_content.setHint("請再次輸入");  
                  
            }  
        });  
          
         adpter1 = new ArrayAdapter<String>  
        (this, R.layout.show, R.id.content, ll);  
          
        btn_show.setOnClickListener(new OnClickListener() {  
              
            @Override  
            public void onClick(View arg0) {  
                          
                list.setAdapter(adpter1);  
            }  
        });   
    }  
  
    @Override  
    public boolean onCreateOptionsMenu(Menu menu) {  
        // Inflate the menu; this adds items to the action bar if it is present.  
        getMenuInflater().inflate(R.menu.main, menu);  
        return true;  
    }  
  
}  


mainactivity.xml:
[html] view plaincopy
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
    android:layout_width="match_parent"  
    android:layout_height="match_parent"  
    android:orientation="vertical">  
  
    <TextView  
        android:layout_width="match_parent"  
        android:layout_height="wrap_content"  
        android:text="一個簡單的arrayadapter的例子" />  
      
    <EditText   
        android:id="@+id/ed_content"  
        android:layout_width="match_parent"  
        android:layout_height="wrap_content"  
        android:hint="請輸入您想輸入的內容"  
        />  
      
    <Button   
        android:id="@+id/btn_write"  
        android:layout_width="match_parent"  
        android:layout_height="wrap_content"  
        android:text="確定"  
        />  
      
    <Button   
        android:id="@+id/btn_show"  
        android:layout_width="match_parent"  
        android:layout_height="wrap_content"  
        android:text="顯示"  
        />  
    <ListView   
        android:id="@+id/list"  
        android:layout_width="match_parent"  
        android:layout_height="wrap_content"  
        ></ListView>  
  
</LinearLayout>  

show.xml代碼如下

[html] view plaincopy
<?xml version="1.0" encoding="utf-8"?>  
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
    android:layout_width="match_parent"  
    android:layout_height="match_parent"  
    android:orientation="vertical" >  
    
     
    <TextView   
        android:id="@+id/content"  
        android:layout_width="match_parent"  
        android:layout_height="wrap_content"  
        />  
  
</LinearLayout>


向AI問一下細節

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

AI

驻马店市| 紫金县| 长乐市| 茂名市| 错那县| 合肥市| 颍上县| 泽普县| 孟连| 耒阳市| 邯郸县| 鄂温| 文水县| 丰原市| 阿拉善左旗| 上蔡县| 左云县| 交口县| 句容市| 祥云县| 古蔺县| 延边| 芮城县| 丰城市| 凤城市| 青阳县| 遂昌县| 庄河市| 屯门区| 红原县| 嵊泗县| 舒兰市| 玛曲县| 卢湾区| 昌平区| 正安县| 辽源市| 三台县| 娄烦县| 桐城市| 古浪县|