Android开发之ListView的简单用法及定制ListView界面操作示例

作者:水中鱼之1999 时间:2021-10-17 13:26:15 

本文实例讲述了Android开发之ListView的简单用法及定制ListView界面操作。分享给大家供大家参考,具体如下:

效果:

Android开发之ListView的简单用法及定制ListView界面操作示例

如何从获得listview上item的内容

详见:https://www.jb51.net/article/158000.htm

中遇到的问题部分。

布局实现:

  • 有个listview显示

  • 一个edit和button发送


<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:app="http://schemas.android.com/apk/res-auto"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 tools:context=".MainActivity"
 android:orientation="vertical">
   <!--使用红色得分割条-->
   <ListView
     android:id="@+id/list1"
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     android:divider="#f00"
     android:dividerHeight="2px"
     android:headerDividersEnabled="false">
   </ListView>
   <!--用于存放和发送新的信息-->
   <LinearLayout
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     android:layout_alignParentBottom="true"
     android:orientation="vertical"
     android:background="#ffffff">
       <!--存放新的信息-->
       <!--设置最大行数-->
       <EditText
         android:id="@+id/ifo"
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:hint="请输入内容"
         android:textColorHint="#c0c0c0"
         android:maxLines="6"/>
       <!--点击发送消息-->
       <Button
         android:id="@+id/send"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:text="发送"
         android:textSize="16sp" />
   </LinearLayout>
</RelativeLayout>

添加方法:


//此处由于只有String一条数据,所以只用了ArrayAdapter
//如果多项信息建议用BaseAdapter
public class MainActivity extends AppCompatActivity {
 //当前消息列表
 ListView list01 ;
 //消息发送栏
 EditText editText01 ;
 //消息发送按钮
 Button button01_send ;
 //记录数组长度
 int arr_num = 0;
 //定义一个数组
 String[] arr1 = new String[arr_num];
 @Override
 protected void onCreate(Bundle savedInstanceState) {
   super.onCreate(savedInstanceState);
   setContentView(R.layout.activity_main);
   list01 = (ListView) findViewById(R.id.list1);
   editText01 = (EditText) findViewById(R.id.ifo);
   button01_send = (Button) findViewById(R.id.send);
   button01_send.setOnClickListener(new View.OnClickListener() {
     @Override
     public void onClick(View v) {
       if ( ! editText01.getText().toString().equals("") ){
         String[] arr_new = new String[++arr_num];
//        System.arraycopy(arr1,0,arr_new,0, arr1.length);
         for (int j = 0 ; j < arr1.length; j++){
           arr_new[j] = arr1[j];
         }
         arr_new[arr_num-1] = editText01.getText().toString();
         arr1 = arr_new;
         ArrayAdapter adapter1;
         adapter1 = new ArrayAdapter<>(MainActivity.this,R.layout.array_list,arr_new);
         list01.setAdapter(adapter1);
         editText01.setText("");
       }else {
         Toast.makeText(MainActivity.this,"请输入后再发送",Toast.LENGTH_SHORT).show();
       }
     }
   });
 }
}

带图片Demo:

Android开发之ListView的简单用法及定制ListView界面操作示例

Demo下载地址:点击此处本站下载

希望本文所述对大家Android程序设计有所帮助。

来源:https://blog.csdn.net/qq_43377749/article/details/84109916

标签:Android,ListView
0
投稿

猜你喜欢

  • Java面向对象之内部类案例讲解

    2021-09-16 13:28:19
  • java导出Excel文件的步骤全纪录

    2021-10-04 11:18:38
  • java中关于深拷贝的几种方式总结

    2023-12-13 17:39:41
  • Spring注解与P/C命名空间超详细解析

    2022-08-04 19:42:34
  • 详解Java实现批量压缩图片裁剪压缩多种尺寸缩略图一键批量上传图片

    2022-12-07 15:56:04
  • 使Java的JButton文字隐藏功能的实现(不隐藏按钮的前提)

    2022-06-01 23:54:33
  • Kotlin标准函数与静态方法基础知识详解

    2021-12-18 08:12:13
  • Spring AOP中的JDK和CGLib动态代理哪个效率更高?

    2023-07-02 18:42:50
  • Java深入浅出数组的定义与使用上篇

    2022-03-10 22:32:58
  • 关于Android HTML5 audio autoplay无效问题的解决方案

    2021-09-22 04:10:30
  • MyBatis特殊字符转义拦截器问题针对(_、\\、%)

    2023-09-12 00:46:39
  • c#在excel中添加超链接示例分享

    2023-06-03 14:10:45
  • Java操作excel的三种常见方法实例

    2022-12-11 02:29:55
  • Java获取用户IP属地模拟抖音详解

    2023-04-18 02:01:29
  • Mapper类中存在名称相同的方法重载报错问题

    2023-04-04 02:44:39
  • Linux系统中C语言编程创建函数fork()执行解析

    2023-06-21 01:10:03
  • 浅谈Spring中@NotEmpty、@NotBlank、@NotNull区别

    2023-01-02 08:15:49
  • C#服务端图片打包下载实现代码解析

    2023-01-26 07:36:23
  • SpringBoot+Netty+WebSocket实现消息发送的示例代码

    2023-08-16 00:02:52
  • MyBatis全局映射文件实现原理解析

    2021-06-21 17:01:29
  • asp之家 软件编程 m.aspxhome.com