not lame tutorial by any means. Thanks for putting these together. I appreciate the level you explained these at - just right for me, I have little java or eclipse background. If you want to program for android you have to learn java, but probably not to the level that java tutorials teach. This great, and staying up till 4 in the morning to make free tutorials for us - wow, just wow.
Love the NewBoston, on tutorial 25 you use the ischecked() in the newer version of eclips this is not used .do you know how to get the same result with anything else
'|' is not a pipe, it's a bitwise OR. It takes two binary numbers and if either of the bits of equal value are 1, that bit in the answer is 1. e.g.:
1010
1001
------
1011
How this relates to the input type: Each of the InputTypes are actually just ints. TYPE_CLASS_TEXT is 1, and TYPE_TEXT_VARIATION_PASSWORD is 128 (or 10000000). Perform a bitwise OR on them:
00000001
10000000
------------
10000001 which is 129. Try entering input.setInputType(129); instead, you'll see it'll work. :)
Thanks for posting some tutorials about Android. However, I'm finding myself skipping through 90% of each tutorial because the topics about Java basics could be tutorials in of themselves under your Java section. I came here to learn about Android. What you DON'T want is people that don't know anything about programming and making crappy apps.. jk, but not really ;) . And yes, "pipes" are common knowledge in shell scipting/command line. Good job though for making these tutorials.
@wetwilly543 I believe this a big problem with programmers. they typically have close to nothing else in life so they want to keep programming an elite practice...this is helpful for those who are not inclined to programming. though I see your point, I spend a good amount of time skipping through it, but come on stfu
@danielson233 I apologize if the comment came off as arrogant. My intention was more of constructive criticism. Programming doesn't have to be an elite practice. There are resources everywhere on how to program. I highly recommend learning the foundation language that the Android API was built upon. Those armed with the knowledge will write faster, more robust applications.Tell me I'm wrong. I'm trying to help steer people in the right direction here...
@swetuswet input.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PASSWORD); TYPE_CLASS_TEXT is what you can enter in your input, TYPE_TEXT_VARIATION_PASSWORD is what is going to display. I think he only put TYPE_CLASS_TEXT in the else because he don't need to choose a way to display text.
I really want to suggest you that, you must tell those beginners "go to new boston.com , learn about what object oriented is so you can understand what classes is, learn what event driven is, and what function is blahblahbalbah ".
Travis, your tutorials are awesome and you did an incredible job with participating in free education. But, I really need to point out one thing. For myself, although I am completely new to Android, but fortunately, I did Java and several other objective oriented programming before so I can understand your tutorials. But For Super Duper beginners out there who barely started to knowing about programming and just learnt what variable is yesterday, I think they are having toooo much trouble now..
"We're just getting familiar with Java" - These really are awesome tutorials, but the going back to the Java is holding people back. I spent many months learning Java waiting for these tutorials, knowing that I could zoom ahead once they arrived. I don't think teaching Java in such a complicated environment will help people who haven't already learnt it and it will just hinder the ones who do already know Java.
Tutorials at 4:05 in the morning Travis?! That's some serious dedication to helping your fans! THANKS!
XdrummerXboy 5 days ago
Thanks for making these tutorials, Travis. They are really helping me along.
LegitFish 2 weeks ago in playlist More videos from thenewboston
u can use + instead of |
devilazpl 1 month ago
not lame tutorial by any means. Thanks for putting these together. I appreciate the level you explained these at - just right for me, I have little java or eclipse background. If you want to program for android you have to learn java, but probably not to the level that java tutorials teach. This great, and staying up till 4 in the morning to make free tutorials for us - wow, just wow.
johnkmoore99 1 month ago in playlist Android Application Development Tutorials
Love the NewBoston, on tutorial 25 you use the ischecked() in the newer version of eclips this is not used .do you know how to get the same result with anything else
MrWrharris 1 month ago
not lame, pretty good. Why you always do this late at night ? Is this your part time job ?
robertlam18 1 month ago
Why not just do a: input.setInputType(TYPE_TEXT_VARIATION_PASSWORD);
xteric1 2 months ago in playlist Android Application Development Tutorials 6
I was ok until this stage... Now I get Unfortunately... ****** has stopped. Any ideas? :(
CorporateSilverback 3 months ago
@CorporateSilverback I saw a similar comment of yours some tuts back. If you havent given up then then why give up now?
supersushi269 2 months ago
@supersushi269 Who said I gave up? Im well past this stage now...
CorporateSilverback 2 months ago
couldn't you get passTog state from the View object v that is passed to the onClick() method instead of finalizing passTog?
I browsed through some of the available methods and found some that could work. For example v.isPrssed() seems like it could do the same job.
It seems like a more elegant solution
Mr1159pm 3 months ago in playlist More videos from thenewboston
or
JRodriguez609 4 months ago
yeah, its called pipe, but it means a bitwise OR...
|||||||
mrsoygenialyque 4 months ago
At 4 AM you're doing Android tutorials!!!
ChrisBuckethead 5 months ago in playlist TheNewBoston - Android 4
'|' is not a pipe, it's a bitwise OR. It takes two binary numbers and if either of the bits of equal value are 1, that bit in the answer is 1. e.g.:
1010
1001
------
1011
How this relates to the input type: Each of the InputTypes are actually just ints. TYPE_CLASS_TEXT is 1, and TYPE_TEXT_VARIATION_PASSWORD is 128 (or 10000000). Perform a bitwise OR on them:
00000001
10000000
------------
10000001 which is 129. Try entering input.setInputType(129); instead, you'll see it'll work. :)
gnatpat 5 months ago in playlist Android App Development Tutorials (thenewboston) 31
@gnatpat Thank you so much... that cleared that doubt.
TheDomeOfGenesys 2 months ago in playlist Android App Development Tutorials (thenewboston)
" | " It's call "pipe" !
batimentcfa35 5 months ago 2
Thanks for posting some tutorials about Android. However, I'm finding myself skipping through 90% of each tutorial because the topics about Java basics could be tutorials in of themselves under your Java section. I came here to learn about Android. What you DON'T want is people that don't know anything about programming and making crappy apps.. jk, but not really ;) . And yes, "pipes" are common knowledge in shell scipting/command line. Good job though for making these tutorials.
wetwilly543 6 months ago in playlist TheNewBoston - Android 18
@wetwilly543 I believe this a big problem with programmers. they typically have close to nothing else in life so they want to keep programming an elite practice...this is helpful for those who are not inclined to programming. though I see your point, I spend a good amount of time skipping through it, but come on stfu
danielson233 3 weeks ago in playlist Android Application Development Tutorials
@danielson233 I apologize if the comment came off as arrogant. My intention was more of constructive criticism. Programming doesn't have to be an elite practice. There are resources everywhere on how to program. I highly recommend learning the foundation language that the Android API was built upon. Those armed with the knowledge will write faster, more robust applications.Tell me I'm wrong. I'm trying to help steer people in the right direction here...
wetwilly543 3 weeks ago
Can anybody explain me
input.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PASSWORD);
what does this line means exactly
swetuswet 6 months ago
@swetuswet input.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PASSWORD); TYPE_CLASS_TEXT is what you can enter in your input, TYPE_TEXT_VARIATION_PASSWORD is what is going to display. I think he only put TYPE_CLASS_TEXT in the else because he don't need to choose a way to display text.
Peterscolumn 6 months ago
@Peterscolumn that makes sense now ...thanks :)
swetuswet 5 months ago
I really want to suggest you that, you must tell those beginners "go to new boston.com , learn about what object oriented is so you can understand what classes is, learn what event driven is, and what function is blahblahbalbah ".
Mrgreatestfreakout 6 months ago
Travis, your tutorials are awesome and you did an incredible job with participating in free education. But, I really need to point out one thing. For myself, although I am completely new to Android, but fortunately, I did Java and several other objective oriented programming before so I can understand your tutorials. But For Super Duper beginners out there who barely started to knowing about programming and just learnt what variable is yesterday, I think they are having toooo much trouble now..
Mrgreatestfreakout 6 months ago
I don't want to sound like an old record but:
"We're just getting familiar with Java" - These really are awesome tutorials, but the going back to the Java is holding people back. I spent many months learning Java waiting for these tutorials, knowing that I could zoom ahead once they arrived. I don't think teaching Java in such a complicated environment will help people who haven't already learnt it and it will just hinder the ones who do already know Java.
ErichLancaster 6 months ago
This tutorial in far from being lame. It encompasses so many essential java tips and tricks to the Java aware people, on top of android development.
I'm personally learning a lot of your tutorial. Thx Travis and Bucky
juliobahar 6 months ago in playlist Android Development Tutorials
can you explain what that pipe line is all about? i think i understand everything else, but that was not very clear...
BretzelPretzel 6 months ago
FTMP =))
casvanmarcel 6 months ago in playlist Android Development thenewboston
great tutorials!!! anyway at 3:25 thats called a pipe i think
vibol03 6 months ago in playlist Android Development thenewboston 6
@vibol03 yep, it's called a pipe line
specipful 6 months ago
Your tutorials are not lame. Only people who are lame say that they are lame. Lamers!!!
yanislav49 6 months ago