Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7007999
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T21:40:46+00:00 2026-05-27T21:40:46+00:00

I have a custom ListView, the code is below. Instead of writing: http://yoursite.com/image1.png ,

  • 0

I have a custom ListView, the code is below. Instead of writing:

“http://yoursite.com/image1.png” , “http://yoursite.com/image2.png”.. and so one.

I want to store all the links in .txt files, and there, my device will read all the link. Is there anyway to do this??

package com.android.LazyList;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.ListView;

public class OnePiece extends Activity {

    ListView list;
    LazyAdapter adapter;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        LazyAdapter adapter=new LazyAdapter(this, mStrings);
        final ListView list =(ListView)findViewById(R.id.list);
        list.setAdapter(adapter);                                                                                                                                                                  

       }

    static final String[] mStrings= new String[] {
        "http://yoursite.com/image1.png" ,
        "http://yoursite.com/image2.png" ,
        "http://yoursite.com/image3.png" ,
        "http://yoursite.com/image4.png" ,
        "http://yoursite.com/image5.png" ,
        "http://yoursite.com/image6.png" ,
    };
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T21:40:46+00:00Added an answer on May 27, 2026 at 9:40 pm

    Add this bit of code to your function :

        File sdcard = Environment.getExternalStorageDirectory();
        File file = new File(sdcard,"/LinkFile.txt");
        // Assuming each link to be on a new line
        StringBuilder text = new StringBuilder();
        try {
            BufferedReader br = new BufferedReader(new FileReader(file));
            String line;
            while ((line = br.readLine()) != null) {
                text.append(line);
                text.append('\n');
            }
        }
        catch (IOException e) {
            Toast.makeText(getApplicationContext(),"Error reading file!",Toast.LENGTH_LONG).show();
        }
        String [] mStrings=text.toString().split("\n");
    

    You should be good to go.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a listView with custom objects defined by the xml-layout below. I want
I have created a custom listView with the row as follows: <RelativeLayout xmlns:android=http://schemas.android.com/apk/res/android android:layout_width=fill_parent
I have two ItemsControls, one a ListView, and one a custom control I am
I have one custom ListView called AreasListView which I've included in the XML file.
In android application i have a custom listview and sqlite database. I want to
I have a Custom ListView created from XML Layout. I want to bind that
I have a ListView with a custom Adapter that extends ArrayAdapter. It's a ArrayAdapter
I have trouble getting a custom ObjectDataSource for an asp:ListView control to work. I
I have a listview with 200 items. I use a custom view for each
I have custom classes that I currently instantiate within App.xaml as resources. I want

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.