AndroidListView怎么實(shí)現(xiàn)自動(dòng)生成列表?xiàng)l目-創(chuàng)新互聯(lián)

這篇“Android ListView怎么實(shí)現(xiàn)自動(dòng)生成列表?xiàng)l目”文章的知識(shí)點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價(jià)值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來(lái)看看這篇“Android ListView怎么實(shí)現(xiàn)自動(dòng)生成列表?xiàng)l目”文章吧。

創(chuàng)新互聯(lián)建站總部坐落于成都市區(qū),致力網(wǎng)站建設(shè)服務(wù)有成都網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站、網(wǎng)絡(luò)營(yíng)銷策劃、網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站維護(hù)、公眾號(hào)搭建、小程序制作、軟件開(kāi)發(fā)等為企業(yè)提供一整套的信息化建設(shè)解決方案。創(chuàng)造真正意義上的網(wǎng)站建設(shè),為互聯(lián)網(wǎng)品牌在互動(dòng)行銷領(lǐng)域創(chuàng)造價(jià)值而不懈努力!

activity_list.xml文件代碼如下:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:orientation="vertical"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent">

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

</LinearLayout>

ListActivity.java文件代碼如下:

package com.example.sample_6_4;

import android.app.Dialog;
import android.graphics.Color;
import android.preference.DialogPreference;
import android.support.v7.app.AlertDialog;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.view.ViewGroup;
import android.view.WindowManager;
import android.widget.ArrayAdapter;
import android.widget.BaseAdapter;
import android.widget.Button;
import android.widget.ListView;
import android.widget.TextView;

public class ListActivity extends AppCompatActivity {
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_list);
  ListView lv = (ListView)findViewById(R.id.listview);
  //做一個(gè)適配器來(lái)使用ListView
  lv.setAdapter(new MyAdapter());
 }
 class MyAdapter extends BaseAdapter{
  @Override
  //返回條目的個(gè)數(shù),列表的條目,例如一個(gè)屏幕顯示多少條
  public int getCount(){
   return 20;
  }
  @Override
  //確定每個(gè)條目的布局和內(nèi)容,position代表?xiàng)l目的位置,從0開(kāi)始
  public View getView(int position, View converView, ViewGroup parent){
   TextView tv = new TextView(ListActivity.this);
   tv.setText("條目" + position);
   tv.setTextSize(23);
   tv.setTextColor(Color.BLUE);
   return tv;
  }
  @Override
  public Object getItem(int position){
   return null;
  }
  @Override
  public long getItemId(int position){
   return 0;
  }
 }
}

以上就是關(guān)于“Android ListView怎么實(shí)現(xiàn)自動(dòng)生成列表?xiàng)l目”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對(duì)大家有幫助,若想了解更多相關(guān)的知識(shí)內(nèi)容,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。

文章題目:AndroidListView怎么實(shí)現(xiàn)自動(dòng)生成列表?xiàng)l目-創(chuàng)新互聯(lián)
URL網(wǎng)址:http://muchs.cn/article44/ipeee.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供Google軟件開(kāi)發(fā)、品牌網(wǎng)站制作、微信公眾號(hào)、手機(jī)網(wǎng)站建設(shè)網(wǎng)站收錄

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

微信小程序開(kāi)發(fā)