Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Open Source License 

import android.content.Context;

import android.view.View;

import android.widget.AbsListView;
import android.widget.ImageView;

public class Main {
    public static View getView(int width, Context mContext) {
        // Make an ImageView to show a photo
        ImageView i = new ImageView(mContext);
        i.setAdjustViewBounds(true);
        i.setLayoutParams(new AbsListView.LayoutParams(width, AbsListView.LayoutParams.WRAP_CONTENT));
        // Give it a nice background
        //i.setBackgroundResource(R.drawable.picture_frame);
        return i;
    }
}