IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> Android关于ListView的使用(二) -> 正文阅读

[移动开发]Android关于ListView的使用(二)

我们上次实现了列表中放置内容,类似于这个界面:
在这里插入图片描述
但是如何给里面添加资源那,如何控制它显示几列那,如何让他显示网络数据那,这都是要思考的。
我们上次在代码中实现列表的内容的,但是你看今日头条这个图片,他的listview每列的数据不一样,其实它是每列都单独用一个界面xml文件来写,而主mainactivity.xml只用来加listview控件:
mainactivity.xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <ListView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:id="@+id/list"></ListView>
    </LinearLayout>
</LinearLayout>

我们计划列表显示的内容:
就是一个按钮图片还有两句话


<?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="200dp"
    android:orientation="horizontal">

    <LinearLayout
        android:layout_width="100dp"
        android:layout_height="200dp">
        <ImageView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_marginTop="5dp"
            android:src="@drawable/ok"
        />

    </LinearLayout>

    <LinearLayout
        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="xiandhjcvh "
         />


        <TextView
            android:layout_marginTop="15dp"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="OKOKOKOKOK "
            />
    </LinearLayout>
</LinearLayout>

代码:


package com.example.lenovo.myapplication;

import android.app.Activity;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.LinearLayout;
import android.widget.ListView;
import android.widget.TextView;


public class MainActivity extends Activity {


    class  OK extends BaseAdapter{
        @Override
        public int getCount() {
        //注意这里设置只显示一个行有内容
            return 1;
        }

        @Override
        public Object getItem(int position) {
            return null;
        }

        @Override
        public long getItemId(int position) {
            return 0;
        }

        @Override
        public View getView(int position, View convertView, ViewGroup parent) {
        //这里就是把你单独出来的界面放进适配器 R.layout.layout就是上面xml文件
            LayoutInflater inflater=getLayoutInflater();
            LinearLayout item=(LinearLayout)inflater.inflate(R.layout.layout,null);
            return item;
        }
    }

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        ListView list=(ListView)findViewById(R.id.list);
        OK ok=new OK();
        //listview添加适配器
        list.setAdapter(ok);
    }
}

在这里插入图片描述

okok上面是我自己想的一个办法,下面这个是我的马老师上课的办法,可能有点绕,就是把适配器类和mainactivity类分开写,然后又加了一个新闻类

在这里插入图片描述
MainActivity类:


package com.example.lenovo.myapplication;

import android.app.Activity;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.LinearLayout;
import android.widget.ListView;

import java.util.ArrayList;


public class MainActivity extends Activity {
    ArrayList<News> m_list=new ArrayList<News>();
    private void initdata(){
        m_list.clear();
        News n1=new News();
        n1.title="okok";
        n1.content="cont";
        m_list.add(n1);
    }
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        ListView lv=(ListView)findViewById(R.id.list);
        initdata();
        Adapator adapator=new Adapator(this,m_list);
        lv.setAdapter(adapator) ;

    }

}

适配器Adapator类:

package com.example.lenovo.myapplication;



        import android.app.Activity;
        import android.content.Context;
        import android.view.LayoutInflater;
        import android.view.View;
        import android.view.ViewGroup;
        import android.widget.BaseAdapter;
        import android.widget.LinearLayout;
        import android.widget.TextView;

        import java.util.ArrayList;

public class Adapator extends BaseAdapter {
    Activity aact;
    ArrayList<News> mmlist=null;
    public Adapator(Activity act, ArrayList<News> list){
        aact=act;
        mmlist=list;
    }
    @Override
    public int getCount() {
        return mmlist.size();
    }

    @Override
    public Object getItem(int position) {
        return null;
    }

    @Override
    public long getItemId(int position) {
        return 0;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {

        LayoutInflater inflater =aact.getLayoutInflater();
        LinearLayout item_view = (LinearLayout)inflater.inflate(R.layout.mylist_item, null);

        TextView titleTv=(TextView)item_view.findViewById(R.id.list_item_title_tv);
        TextView contentTv=(TextView)item_view.findViewById(R.id.list_item_content_tv);

        titleTv.setText(mmlist.get(position).title);
        contentTv.setText(mmlist.get(position).content);

        return item_view;
    }
}


News类:

package com.example.lenovo.myapplication;

/**
 * Created by lenovo on 2021/10/14.
 */
public class News {
    public String title="";
    public String content="";
}








mainactivity.xml:


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <ListView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:id="@+id/list"></ListView>
    </LinearLayout>
</LinearLayout>

列表显示的界面(mylist_item.xml):

<?xml version="1.0" encoding="UTF-8"?>

    <LinearLayout android:orientation="horizontal" android:layout_height="100dp" android:layout_width="match_parent" xmlns:android="http://schemas.android.com/apk/res/android">


    -<LinearLayout android:layout_height="100dp" android:layout_width="100dp">

    <ImageView android:layout_height="match_parent" android:layout_width="match_parent" android:src="@drawable/ok" android:layout_margin="5dp" android:scaleType="fitXY"/>

</LinearLayout>


    <LinearLayout android:orientation="vertical" android:layout_height="match_parent" android:layout_width="match_parent" android:gravity="center_vertical">

    <TextView android:layout_height="wrap_content"
        android:id="@+id/list_item_title_tv" android:layout_width="match_parent" android:text="西安空气质量越来越好" android:textColor="#fe080808" android:textSize="18sp"/>

    <TextView android:layout_height="wrap_content"
        android:id="@+id/list_item_content_tv" android:layout_width="match_parent" android:text="今天西安收获第100阁蓝天,下午" android:textColor="#fe123456" android:textSize="14sp" android:layout_marginTop="5dp"/>

</LinearLayout>

</LinearLayout>

运行如下:

在这里插入图片描述
在这里插入图片描述
我们马老师马博士还是厉害滴,里面的类关系十分巧妙,可以细细一品,下一步应该就是从网络上获取资源来显示,下次再写

  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2021-10-17 12:06:28  更:2021-10-17 12:07:13 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 21:50:55-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码