Tuesday, July 2, 2013

[General] Razr Maxx HD For Sell .. FLAWLESS.


Razr Maxx HD For Sell .. FLAWLESS.



Hello..

I have a Razr Maxx Hd for sell. This phone is simply flawless and has no issues what so ever! 575.00 Shipped.

I know this is posted in the wrong area, couldn't figure out how to post in the proper buy/trade section, admin please move for me? I have been a member long enough to post there.

Phone only as I am using the charger for another device i own. Have a great day all. If need be I can send pics. Please email me direct for faster response.



.

forum.xda-developers.com



[General] HELP!!! Rooted LG Spectrum VS920 - Cant connect to pc. With or Without USB Debugging


HELP!!! Rooted LG Spectrum VS920 - Cant connect to pc. With or Without USB Debugging



I have been working on this phone for hours, I got it rooted and the bootloader unlocked (I believe so anyway). I went to plug the phone in to my PC to transfer the first ROM and Gapps over to the phone for flashing and I got a pop up from windows saying device not recognized, but I already had all the drivers setup and working perfectly. I tried reinstalling the drivers multiple time tried multiple computers. Now when I check USB debugging nothing happens. I am pulling my hair out over here, please any possible solutions wouls be GREATLY appreciated!!!

Primary Device: LG Spectrum 4G ( LG VS920 )

Originally working on MacBook Pro Mid-2012 Windows 7 Ultimate with BootCamp

Moved over to an Inspiron 1440 because I'm trying a fresh install of windows on the MacBook Pro



.

forum.xda-developers.com



[General] The Marketplace - Buy, Sell & Trade - Not allowing me to start a new thread!


The Marketplace - Buy, Sell & Trade - Not allowing me to start a new thread!



Not sure what gives here. I've met the requirements too be able to start a thread in the marketplace yet Im still not seeing where or how I can do this. I have the 50 plus post. Have been a member for well over a month that is required. I have a really nice phone Im trying to sell (Razr Maxx HD) yet Im unable to start a thread in the marketplace.

Not sure if there is something Im missing here. I read the guidelines and requirements to great lengths. What gives?



.

forum.xda-developers.com



[General] HTC One on GoPhone plan?


HTC One on GoPhone plan?



Hello!
I currently have the Huawei AT&T Fusion 2 phone, running on a $25.00 a month GoPhone plan. It has unlimited texting and 250 minutes of calling. No data, but I can use the smart technologies while on Wi-Fi. My dad will pay no more than $25 a month for a phone plan. He said that the HTC One now sold for $100 without a contract. I want to buy the phone and then connect it to a service. (Preferrably Spring, AT&T, or Verizon) I can't afford to pay him more than an extra $10 a month for it. Can somebody please help me find a phone plan that will work with the HTC One that is under $35.00 a month? I want it to have unlimited texting and decent calling minutes. If it worked with my current GoPhone plan, that would be great! Thank you in advance!



.

forum.xda-developers.com



[android help] How to get the graphical layout Window back in Eclipse for Android Application Design?


How to get the graphical layout Window back in Eclipse for Android Application Design?


How to get the graphical layout Window back in Eclipse for Android Application Design? - Stack Overflow







Tell me more ×

Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

















I dont know what happend, but i lost the Graphical Layout Window of the XML Layout that we are using in Eclipce to design the Android Application. I want that Design window back. I can see the xml code and every thing. . . But i want the Design Editor that is available as by default in the Eclipse after integration of the Android in it.


So how to get it back ???





























Ok . No one have answer my question. But by searching on Eclipse i got the answer. I have right click on the XMLcode layout and then select opneWith Layout editor. It will show me the Graphical Layout Editor for my Application And now i an able to see the Grapgical view on My every Application that have coded by XML code.























Do you not see the "Graphical Layout" tab on the bottom of the open xml file?






















Just follow this pattern : Package Explorer ---> res --> Layout ---> activity_main.XML Open activity_main.XML

























In Eclipse,just click check for updates and after that it will restart the eclipse and now u can see the graphical layout,the problem was in ADT plugin only.






















If you want to open all the xml files in layout editor, go to Preferences->general->editor->FIle associations Change the default editor in the selections























default






.

stackoverflow.comm



[android help] OrmLite, calendar and timestamp


OrmLite, calendar and timestamp



I am having a problem with some OrmLite mapping with java fields in android.


1.I have Calendar type in java class, and in SQLlite the same field defined as TimeStamp, when I run a method findAll() I get folowing exception:
ORMLite can't store unknown class class java.util.Calendar for field 'Start'. Serializable fields must specify dataType=DataType.SERIALIZABLE


if I use setDataType(DataType.SERIALIZABLE); I'm getting this error:
java.sql.SQLException: Could not read serialized object from byte array: [50, 48,


Also I have tried with the TIME_STAMP (DataType.TIME_STAMP) but then I'm getting this error: Field class java.util.Calendar for field FieldType:name=Start,class=PeriodTest is not valid for type com.j256.ormlite.field.types.TimeStampType@416f9ea0, maybe should be class java.sql.Timestamp


2.I have the same problem with the TimeStamp java class.


Does anybody know the solution for these two cases?


Thanx in advance, Oggie



.

stackoverflow.comm



[android help] How to press a button twice using Google UiAutomator?


How to press a button twice using Google UiAutomator?



I have the following script for typing '33' into the Calculator, in Android, using UiAutomator. However, only the first '3' is accepted, the second press is entirely ignored.



import com.android.uiautomator.core.*;
import com.android.uiautomator.testrunner.UiAutomatorTestCase;

public class MyFirstUiAutomatorTest extends UiAutomatorTestCase {
UiObject getByDescription(String description) {
return new UiObject(new UiSelector().description(description));
}

UiObject getByText(String description) {
return new UiObject(new UiSelector().text(description));
}

UiObject scrollableGetByText(String text ) throws UiObjectNotFoundException {
UiScrollable uiScrollable = new UiScrollable(new UiSelector().scrollable(true));
uiScrollable.setAsHorizontalList();
return uiScrollable.getChildByText(new UiSelector().className(
android.widget.TextView.class.getName()),
text);
}

public void testStuff() throws UiObjectNotFoundException {
getUiDevice().pressHome();
getByDescription("Apps").clickAndWaitForNewWindow();
getByText("Apps").click();
scrollableGetByText("Calculator").clickAndWaitForNewWindow();

// pressing '+' and '=' effectively clears the previous input
getByText("+").click();
getByText("=").click();
getByText("3").click();
// this second '3' is ignored
getByText("3").click();
}
}


I've tried adding a sleep for 2 seconds after the first click, by doing:



try {
Thread.sleep(2000);
} catch (InterruptedException e) {
e.printStackTrace();
}


... but that didn't change anything.


I also tried clicking on a different button, in between the 2 '3's, ie:



new UiObject(new UiSelector().text("3")).click();
new UiObject(new UiSelector().className("android.widget.EditText")).click();
new UiObject(new UiSelector().text("3")).click();


... but that didn't work either.


Ideas?


(Note: using Android 4.1.2, in an AVD; running on Ubuntu linux 12.04)



.

stackoverflow.comm



[android help] Android Support BackStackRecord nullpointerexception


Android Support BackStackRecord nullpointerexception



I am working with Fragments, and the commit method call on my FragmentTransaction object is throwing a NullPointerException, what could cause this?



FragmentTransaction fragTrans= getSupportFragmentManager().beginTransaction();
fragTrans.hide(fragmentA);
fragTrans.hide(fragmentB);
fragTrans.commit();


If I run the code and comment out the commit, the NPE isn't thrown, so I've narrowed it down to the commit.


The NPE is caused by android.support.v4.BackStackRecord.run



.

stackoverflow.comm



[android help] How to know which jar file of android sdk contains the class I need


How to know which jar file of android sdk contains the class I need



I want to recreate android uiautomator.jar (not the whole android framework) in eclipse from its source code, and need to:



import android.accessibilityservice.UiTestAutomationBridge;
import android.os.SystemService;


but saw the following errors:



package android.accessibilityservice does not exist
package android.os does not exist


I am using android sdk-17. From the source code coming with the sdk, I can see that the packages do exist, they are under sources/android-17/android, and I can see the java source files are there.


My build path contains only android.jar, obviously it does not includes these packages. Is there a way to know which jar I should include? I understand the whole android framework needs to be compiled in Linux environment. Is it possible to compile uiautomator using Eclipse. It is only a jar file used for UI tetsing. Thanks.



.

stackoverflow.comm



Google Voice on T-Mobile? [General]

Google Voice on T-Mobile? So I recently switched from a GNex on Verizon to a Moto X DE on T-Mobile. I had always used Google Voice for my v...