[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y ] [Search | Free Show | Home]

>open pic related >get a migraine how do i learn

This is a blue board which means that it's for everybody (Safe For Work content only). If you see any adult content, please report it.

Thread replies: 14
Thread images: 2

File: Capture.png (569KB, 1880x1074px) Image search: [Google]
Capture.png
569KB, 1880x1074px
>open pic related
>get a migraine

how do i learn to use android studio
>>
>>60113249
Do you get seizures when you use MS Paint or CAD software? Stop being so fucking autistic.
>>
>>60113249
I assume you'd have to know what you're doing to use it.
>>
>>60113249
It is a bit of a migraine. The one thing I'll give Apple credit for is that Xcode is visually appealing and their layout functionality is much more intuitive (I.E. I can drag a button into an empty space and create a new activity vs Android where I have to go through the XML and .java/.kt files and add that functionality in while specifying the name of the new activity).

Honestly, you just get use to it. Your life becomes a lot easier if you use kotlin instead:

>Java mess
public class MainActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);

FloatingActionButton myfab = (FloatingActionButton) findViewById(R.id.myfab);
myfab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Snackbar.make(view, "This is a snackbar", Snackbar.LENGTH_LONG)
.setAction("Action", null).show();
}
});
}

}


>master race Kotlin
class MainActivity : AppCompatActivity() {

override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
val toolbar = findViewById(R.id.toolbar) as Toolbar
setSupportActionBar(toolbar)

val myfab = findViewById(R.id.myfab) as FloatingActionButton
myfab.setOnClickListener { view ->
Snackbar.make(view, "This is a snackbar", Snackbar.LENGTH_LONG)
.setAction("Action", null).show()
}
}

}
>>
File: img132.png (11KB, 148x91px) Image search: [Google]
img132.png
11KB, 148x91px
just use emacs
it just pic related
>>
>>60113310
does emacs really have an android development plugin or is that just a meme?
>>
>>60113284
>so much camelcase in java
i'm fucking triggered
>>
>>60113362
not a meme
>>
>>60113375
>camelcase
Yeah camelcase is almost always the standard when it comes to classes.
>>
>>60113249
If you are a Emacs fan use the emacs keybiding is on settings > editor > keybindings.

If you are a VIM peasant IdeaVim is a pretty decent emulation.

Learn to use the sublime thingy bar
and the find action bar.

You can configure the theme to a darker version using the Dracula theme.

Only design the interfaces using the XML.
>>
>>60113249
Rice it with a dark theme and install Redshift
>>
>>60113477
>Redshift
wuts dat
>>
>>60113477
Redshift is shit
use f.lux instead
>>
>>60113695
this anon speaks the truth, f.lux masterrace
Thread posts: 14
Thread images: 2


[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y] [Search | Top | Home]

I'm aware that Imgur.com will stop allowing adult images since 15th of May. I'm taking actions to backup as much data as possible.
Read more on this topic here - https://archived.moe/talk/thread/1694/


If you need a post removed click on it's [Report] button and follow the instruction.
DMCA Content Takedown via dmca.com
All images are hosted on imgur.com.
If you like this website please support us by donating with Bitcoins at 16mKtbZiwW52BLkibtCr8jUg2KVUMTxVQ5
All trademarks and copyrights on this page are owned by their respective parties.
Images uploaded are the responsibility of the Poster. Comments are owned by the Poster.
This is a 4chan archive - all of the content originated from that site.
This means that RandomArchive shows their content, archived.
If you need information for a Poster - contact them.