![]() |
SUBSIM: The Web's #1 BBS for all submarine and naval simulations! |
06-17-2012, 05:28 AM
|
#1 |
|
Danish Submariner
|
OK, so I created a package called "the.stuff.needed"
with this code: Code:
package the.stuff.needed;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class MySecondProjectActivity extends Activity {
/** Called when the activity is first created. */
TextView textView1;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Account account1 = new Account("Burd","222 Cyberspace Lane", 24.02);
textView1=((TextView) findViewById(R.id.textView1));
textView1.setText (account1.infoString());
}
}
In "Account.java" I have created below: Code:
package the.stuff.needed;
public class Account {
public String name;
public String address;
public double balance;
public Account(String name,
String address,
double balance) {
this.name=name;
this.address=address;
this.balance=balance;
}
public String infoString() {
return name + " ( " + address +
" ) has $" + balance;
}
}
How can I be sure that the MySecondProjectAcitivity.java looks in Account.java?
__________________
![]() "I like subcommanders...they dont have time for bull****!" Proud member of the Subsim army of zombies Becks website |
|
|
06-17-2012, 03:55 PM
|
#2 |
|
Admiral
![]() Join Date: Jul 2002
Location: Pacific NW
Posts: 2,170
Downloads: 6
Uploads: 0
|
I'm not sure what you mean by "looks in". Are you getting a class not found error for account? If that's the case throw this in your imports:
import the.stuff.needed.Account
__________________
When the range was 5,500 yards the target hoisted a flag signal, both he and the escort turned toward at high speed, the "Q" ship uncovered his guns and the first salvo was a straddle. BATFISH bent on four and started executing the well known maneuver of getting the hell out... Fifth war patrol, USS BATFISH |
|
|
06-17-2012, 08:19 PM
|
#3 | |
|
Admiral
![]() Join Date: Jun 2010
Location: Canada
Posts: 2,007
Downloads: 6
Uploads: 0
|
Quote:
If they are in the same package, than you can declare an account from MySecondProjectActivity |
|
|
|
06-18-2012, 12:30 AM
|
#4 |
|
Danish Submariner
|
Thanks. I'm very new to how this works, so its baby steps :-D
__________________
![]() "I like subcommanders...they dont have time for bull****!" Proud member of the Subsim army of zombies Becks website |
|
|
06-18-2012, 01:12 AM
|
#5 |
|
Admiral
![]() Join Date: Jul 2002
Location: Pacific NW
Posts: 2,170
Downloads: 6
Uploads: 0
|
Just FYI, if you really wanted to I believe you could have referred to the class using the fully qualified the.stuff.needed.Account (ex: the.stuff.needed.Account.infoString()). But nobody does that, that's too much typing!
Trying to hook up the tab bars to actions and put them into a fragment as we speak, didn't get started as early as I wanted to and will probably be going to bed soon though :/. PD
__________________
When the range was 5,500 yards the target hoisted a flag signal, both he and the escort turned toward at high speed, the "Q" ship uncovered his guns and the first salvo was a straddle. BATFISH bent on four and started executing the well known maneuver of getting the hell out... Fifth war patrol, USS BATFISH |
|
|
06-18-2012, 03:39 AM
|
#6 | |
|
Danish Submariner
|
Quote:
I think Neal is working on the mobile versions of news and forums. Just waiting for him to confirm, so we can test.
__________________
![]() "I like subcommanders...they dont have time for bull****!" Proud member of the Subsim army of zombies Becks website |
|
|
|
06-30-2012, 05:49 AM
|
#7 |
|
Danish Submariner
|
Did you progress on the buttons and the code?
__________________
![]() "I like subcommanders...they dont have time for bull****!" Proud member of the Subsim army of zombies Becks website |
|
|
07-04-2012, 12:36 AM
|
#8 |
|
Admiral
![]() Join Date: Jul 2002
Location: Pacific NW
Posts: 2,170
Downloads: 6
Uploads: 0
|
Hey McBeck!
Sorry for going MIA, was out of town all of last week and the rest of the time was spent occupied with the real world. I am going to try to get back to this now, I also have some Android hardware to test on now! PD
__________________
When the range was 5,500 yards the target hoisted a flag signal, both he and the escort turned toward at high speed, the "Q" ship uncovered his guns and the first salvo was a straddle. BATFISH bent on four and started executing the well known maneuver of getting the hell out... Fifth war patrol, USS BATFISH |
|
|
07-04-2012, 01:58 AM
|
#9 | |
|
Danish Submariner
|
Quote:
did you get a new phone?Neals been off as well, so I doubt he has progressed on the updates on his side as well. I have been busy too, would love to get a look at some code examples...
__________________
![]() "I like subcommanders...they dont have time for bull****!" Proud member of the Subsim army of zombies Becks website |
|
|
|
07-04-2012, 02:26 AM
|
#10 | |
|
Admiral
![]() Join Date: Jul 2002
Location: Pacific NW
Posts: 2,170
Downloads: 6
Uploads: 0
|
Quote:
If you haven't seen it, Google's put together a decent Android best practices section (finally) at: http://developer.android.com/training/index.html PD
__________________
When the range was 5,500 yards the target hoisted a flag signal, both he and the escort turned toward at high speed, the "Q" ship uncovered his guns and the first salvo was a straddle. BATFISH bent on four and started executing the well known maneuver of getting the hell out... Fifth war patrol, USS BATFISH |
|
|
|
07-04-2012, 03:17 AM
|
#11 | |
|
Danish Submariner
|
Quote:
__________________
![]() "I like subcommanders...they dont have time for bull****!" Proud member of the Subsim army of zombies Becks website |
|
|
|
07-09-2012, 02:34 AM
|
#12 |
|
Admiral
![]() Join Date: Jul 2002
Location: Pacific NW
Posts: 2,170
Downloads: 6
Uploads: 0
|
So I finally have a half way respectable fragment tab activity running. I'll commit it to the mercurial repo tomorrow, I have some housekeeping on the repository to do.
PD
__________________
When the range was 5,500 yards the target hoisted a flag signal, both he and the escort turned toward at high speed, the "Q" ship uncovered his guns and the first salvo was a straddle. BATFISH bent on four and started executing the well known maneuver of getting the hell out... Fifth war patrol, USS BATFISH |
|
|
07-09-2012, 03:23 AM
|
#13 |
|
Danish Submariner
|
Thanks!
__________________
![]() "I like subcommanders...they dont have time for bull****!" Proud member of the Subsim army of zombies Becks website |
|
|
07-10-2012, 01:51 AM
|
#14 |
|
Admiral
![]() Join Date: Jul 2002
Location: Pacific NW
Posts: 2,170
Downloads: 6
Uploads: 0
|
Alright, changes pushed up.
As far as next steps go: - An RSS feed for each of the three news feeds on the main pages (Subsim, world, and reviews) would greatly help. Just to be clear, one RSS feed for each category. - For forums are we just doing a webview? I have no idea whether there's an available API for that. And is it even possible to do any of the forum stuff better than tapatalk? Maybe we should just leave forums out? - Any other feature ideas? - I feel like I'm somewhat back up to speed on the Android stuff. Do we want to stick with the tabbed layout? From what I understand, action bars (http://developer.android.com/referen...ActionBar.html) are the new normal for Android navigation. For an example, look at the Play Store (or many others) app. They are Honeycomb and above, but there are libraries to help us target earlier versions without too much trouble. - Is there anybody around who considers themselves a designer? We will need graphics for icons, opinions on colors, etc eventually. Is there an iOS app in progress? If so, if whoever is doing that is open to any help, I would certainly be interested in helping out. I would probably focus on the Android stuff though, iOS is what I do all day at work. PD
__________________
When the range was 5,500 yards the target hoisted a flag signal, both he and the escort turned toward at high speed, the "Q" ship uncovered his guns and the first salvo was a straddle. BATFISH bent on four and started executing the well known maneuver of getting the hell out... Fifth war patrol, USS BATFISH |
|
|
07-26-2012, 03:08 PM
|
#15 | |
|
Danish Submariner
|
Quote:
I think one of the other threads were on ois. As for graphics, I suggest we get the functions in there first and then tweak the looks. What do you think (I have little experience). As for tabs, I think we should stick to you idea and focus on something that would work for most. Do lets target the solution that covers android 2.3 and up. Does that sound fair?
__________________
![]() "I like subcommanders...they dont have time for bull****!" Proud member of the Subsim army of zombies Becks website |
|
|
|
![]() |
| Thread Tools | |
| Display Modes | |
|
|