温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

android arrayadapter 适配器

发布时间:2020-08-06 09:25:39 来源:网络 阅读:551 作者:郑传余 栏目:移动开发

   今天讲解的知识点是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