Questions tagged [adt]

Android Development Tools (ADT) is a plugin for the Eclipse IDE that is designed to give you a powerful, integrated environment in which to build Android applications.

Android Development Tools (ADT) is a plugin for the Eclipse IDE that is designed to give you a powerful, integrated environment in which to build Android applications.

ADT extends the capabilities of Eclipse to let you quickly set up new Android projects, create an application UI, add components based on the Android Framework API, debug your applications using the Android SDK tools, and even export signed (or unsigned) .apk files in order to distribute your application.

Note that Eclipse is no longer supported by Google for Android development.

More here.

2507 questions
0
votes
1 answer

Undefined reference to 'Winmain@16' and ld returned 1 exit status codeblocks c++

I am working on a programming project for an assignment. I have a class and I have to make it an ADT so I have to split the program into the interface, implementation and main project. This means I'll have 3 files. I am using codeblocks 16.01 and I…
ziggy
  • 11
  • 2
0
votes
2 answers

Hello Android works on my phone but not on Emulator

I am trying to learn about Android development. I have installed Eclipse (3.6.2) the ADT plugin (10.0.1) and the Android SDK (r11 off the official site) all are installed as 32 bit but my OS is Windows 7 64-bit. What happens is I run my app…
AMadmanTriumphs
  • 4,888
  • 3
  • 28
  • 44
0
votes
0 answers

Trying to create a Parse function for my String ADT using LogEntry C++

std::vector parse(std::istream& in) { std::vector result; char c[500]; LogEntry log; String entry; while(!in.eof()){ in.getline(c, 500); if(in.eof()) break; entry = String(c); …
0
votes
2 answers

Are Heap and Priority Queue, data structures or abstract data types?

I have seen similar questions and read a lot of the answers. One would think that I would know it then, however some of the answers were contradictory and now I am more confused than when I started. My quest started of as - what is the difference…
Jonas Grønbek
  • 1,709
  • 2
  • 22
  • 49
0
votes
1 answer

Packaging AIR apps with ADT gives wrong namespace error on Windows, works on Mac

I'm packiging AIR app both on Mac and on Windows. On Mac everything goes well, but on Windows I get an error. Myapp-app.xml: error 102: Invalid namespace http://ns.adobe.com/air/application/2.5 I have latest SDK's installed on both machines,…
Ska
  • 6,658
  • 14
  • 53
  • 74
0
votes
0 answers

Cannot create an ADT

I have been given a task to work with an ADT, I have been given it's .h file and a precompiled library of some sort that is supposed to be the implementation, however I cannot create a new instance of said ADT as the creator function always returns…
Tom
  • 69
  • 7
0
votes
0 answers

ADT MAXHEAP in c

i am trying to implement an ADT of maxheap in c. i am having trouble with the heapify function. this is my h file typedef struct t_MaxHeap* MaxHeap; typedef struct t_Node* Node; typedef void *element; typedef element (*copyFunc)(element); typedef…
0
votes
0 answers

makefile - no rule to make a target c

This case has been opened many times, I have checked up all of the answers but didn't really help. I'm posting it here may someone can help me. My working architecture is : | ( I'm Here ) +- matamzone.c +- amountset.c +- product.c +- order.c +-…
0
votes
0 answers

What parsing strategy is best for Http messages?

I'd like to create a program that parses http requests and responses. I already have created its ADT following the specification here, which was pretty easy given that every message follows the same structure. ADTs in Kotlin. I've looked into some…
praguevara
  • 67
  • 2
  • 10
0
votes
1 answer

What are the considerations when returning by value vs by reference - Set ADT C

When looking at the header file of Set ADT in C, I'm trying to understand why was the function setUnion or setIntersection declared that way: Set setUnion(Set set1, Set set2); Set setIntersection(Set set1, Set set2); I couldn't find the…
E. Ginzburg
  • 253
  • 2
  • 9
0
votes
3 answers

Can I have a case class with default/hardcoded values

For example say I have a sealed trait AnimalSoundsand I have case class "Dog" and a case class "Cat" I want the two case classes value to default to "Woof" and "Cat" sealed trait AnimalSounds extends Product with Serializable final case class…
SimonL
  • 3
  • 1
0
votes
1 answer

ADT vs Either vs Exceptions

So, the current implementation uses twitter's Future along with throwing exceptions to signal invalid use-case along with for-comprehensions, like so: def someMethod(a: ...): Future[X] = { // do something // if something goes wrong throw…
iyerland
  • 632
  • 2
  • 10
  • 24
0
votes
0 answers

After updating adt , avd did not work anymore

I just updated ADT (it was its recommendation) my avd did not work and shows this error message: Intel HAXM is required to run this Avd . /dev/kvm in not found . Enable VT-x in your Bios security setting Ensure that your Linux distro has working…
user11801832
0
votes
1 answer

could I make folder in res with any name that I want?

I just notice that aapt make a R class that has so many subclass that are the same as android res folder . can I make a folder in res with name that is not of those subclass of R.java and use it as a res with .xml file that I put in it ?
user11801832
0
votes
3 answers

Why does my program not detect palindromes?

My assignment was to use the reference-based implementation of the ADT List and the array-based implementation of the ADT Stack in a program that has a user enter a string of lower-case letters. I was to go through the string and store each letter…
Aaron
  • 1
  • 1
1 2 3
99
100