ALL IMAGES DISPLAYED IN ORDER OF SOURCE CODE LISTINGS:
Okay, making some real progress now. I have this working:
package com.hope.is;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
import com.android.qualcomm.qcnvitems.*;
import java.io.IOException;
public class unlockthisnow extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
TextView tv = new TextView(this);
QcNvItems newqc = new QcNvItems();
try {
tv.setText (newqc.get_nv_sys_sw_ver());
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
setContentView(tv);
}
}
So something is working, from that QcNvItems and its' classes!
Also, this code:
package com.hope.is;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
import com.android.qualcomm.qcnvitems.*;
import java.io.IOException;
public class unlockthisnow extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
TextView tv = new TextView(this);
QcNvItems newqc = new QcNvItems();
try {
tv.setText (newqc.getBand());
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
setContentView(tv);
}
}
And this...
package com.hope.is;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
import com.android.qualcomm.qcnvitems.*;
import java.io.IOException;
public class unlockthisnow extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
TextView tv = new TextView(this);
QcNvItems newqc = new QcNvItems();
try {
tv.setText (newqc.getemmanufactoryInfo());
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
setContentView(tv);
}
}
Updates as and when they come...

Edited by glossywhite, 19 October 2011 - 03:28 PM.