Issue
My application was working fine before reading in XML objects but now I have added to the two buttons and a textview to it it's having a problem finding them.
So I added the three objects there for more control of my application and the activity class cannot find them
public class TVListingTestActivity extends Activity implements OnClickListener
{
private static final String TAG = "myApp";
private EditText infoView;
private String result;
private String full;
public int count;
final Context context =this;
private LinkedList<Widget> aList;
private LinkedList<String> stringList;
private LinkedList<Button> buttons;
private Button forwardDay;
private Button backDay;
private TextView display;
private int dayParse= 0;
private String tvListingURL;
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
stringList = new LinkedList<String>();
infoView= (EditText) findViewById(R.id.infoView);
tvListingURL = "http://bleb.org/tv/data/rss.php?ch=bbc1_scotland&day="+dayParse;
forwardDay=(Button)findViewById(R.id.forwardbutton);
backDay=(Button)findViewById(R.id.backbutton);
display=(TextView)findViewById(R.id.displayview);
The resources seem to be showing up in the R file so I cannot understand what the problem is. Has anyone encounterd anything like this before?
package org.me.myandroidstuff;
public final class R {
public static final class array {
public static final int shows=0x7f040000;
}
public static final class attr {
}
public static final class drawable {
public static final int icon=0x7f020000;
}
public static final class id {
public static final int back=0x7f060002;
public static final int cspinner=0x7f060007;
public static final int dialog_info=0x7f060000;
public static final int infoView=0x7f060003;
public static final int main=0x7f060004;
public static final int main_page=0x7f060006;
public static final int mainll=0x7f060005;
public static final int reminder=0x7f060001;
}
public static final class layout {
public static final int dialog_info=0x7f030000;
public static final int main=0x7f030001;
public static final int main_page=0x7f030002;
}
public static final class string {
public static final int app_name=0x7f050001;
public static final int hello=0x7f050000;
}
}
Solution
Delete android.R
from your imports in java file.
Answered By - InflexCZE
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.