0% found this document useful (0 votes)
2 views

Android Program for ListView Demo

The document contains an Android program that demonstrates the use of a ListView. It includes two XML layout files: one for the ListView and another for the individual list items, which consist of a TextView. The Java code initializes the ListView with an array of country names using an ArrayAdapter.

Uploaded by

kokanesanket24
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views

Android Program for ListView Demo

The document contains an Android program that demonstrates the use of a ListView. It includes two XML layout files: one for the ListView and another for the individual list items, which consist of a TextView. The Java code initializes the ListView with an array of country names using an ArrayAdapter.

Uploaded by

kokanesanket24
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

// android program for ListView Demo

First xml file


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView
android:id="@+id/simpleListView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:divider="@color/material_blue_grey_800"
android:dividerHeight="1dp" />

</LinearLayout>

Second xml file


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

<TextView
android:id="@+id/textView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:textSize="30sp"/>

</LinearLayout>
Java file
package com.example.listviewdemo;

import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;
import android.widget.ArrayAdapter;
import android.widget.ListView;

public class MainActivity extends AppCompatActivity {

ListView simpleList;
String countryList[] = {"India", "China", "australia", "Portugle", "America", "NewZealand"};
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.mylist);
simpleList = (ListView)findViewById(R.id.simpleListView);
ArrayAdapter<String> arrayAdapter = new ArrayAdapter<String>(this, R.layout.mytextview, R.id.textView,
countryList);
simpleList.setAdapter(arrayAdapter);
}
}

You might also like