active questions tagged g1 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T10:54:42Z http://stackoverflow.com/feeds/tag/g1 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/747614/how-to-set-the-hostname-on-a-g1-phone 1 How to set the hostname on a G1 Phone Rob 2009-04-14T13:40:56Z 2009-11-04T10:00:01Z <p>I have a root'd G1 phone, and I would like to set its hostname. As root I can run the <code>hostname</code> command and set it, but the name does not survive reboot.</p> <p>First, I tried creating a <code>/etc/hostname</code> file that only contained my hostname, but that did not work.</p> <p>Next, I edited <code>/etc/hosts</code> like this:</p> <pre><code>127.0.0.1 g1-phone localhost </code></pre> <p>However that failed as well. Are there any other methods I can try to set the hostname permanently?</p> http://stackoverflow.com/questions/310581/can-you-get-to-a-command-line-on-the-g1-phone 1 Can you get to a command line on the G1 phone? Ethan 2008-11-21T23:53:54Z 2009-10-22T04:50:40Z <p>I understand the Android OS is based on Linux. Does that mean the G1 phone has a terminal emulator and you can open a console and use commands like <code>cd</code>, <code>ls</code>, etc? Or failing that, would it be possible to write a terminal emulator for it?</p> <p>On a related note, would it be possible to run a ssh server on the G1 and log into it over a wifi connection?</p> <p>Thanks,</p> <p>Ethan</p> http://stackoverflow.com/questions/1126903/retrieving-the-sms-messages-from-the-sim-card-on-with-android 1 Retrieving the SMS Messages from the SIM card on with android Robbie 2009-07-14T17:40:08Z 2009-09-11T07:39:27Z <p>Hi Everyone,</p> <p>I was wondering if anyone knew anything about programmatically getting the sms messages off of your phone's sim card on an android platform. I would like to write a program that allows you to save either individual messages or entire threads to the sd card, but after looking around for a bit, I have discovered that google decided to take out that api from the current android sdk. I saw in a few places that there are hidden apis for this, but no one knew what they were or how to use them.</p> <p>Any help is great.</p> <p>Thanks, Robbie</p> http://stackoverflow.com/questions/1352950/android-program-crashing-new-to-platform 0 android program crashing (new to platform) mutio 2009-08-30T02:42:47Z 2009-08-30T11:48:59Z <p>So it is my first real Android program (!hello world), but i do have java experience.The program compiles fine, but on running it crashes as soon as it opens (tried debugging, but it crashes before it hits my breakpoint). Was looking for any advice from anyone who is more experienced with android.</p> <pre><code>package org.me.tipcalculator; import android.app.Activity; import android.os.Bundle; import android.widget.TextView; import android.view.View; import android.widget.Button; import android.widget.EditText; import java.text.NumberFormat; import android.util.Log; public class TipCalculator extends Activity { public static final String tag = "TipCalculator"; /** Called when the activity is first created. */ @Override public void onCreate(Bundle icicle) { super.onCreate(icicle); setContentView(R.layout.main); final EditText mealpricefield = (EditText) findViewById(R.id.mealprice); final TextView answerfield = (TextView) findViewById(R.id.answer); final Button button = (Button) findViewById(R.id.calculate); button.setOnClickListener(new Button.OnClickListener() { public void onClick(View v) { try { Log.i(tag, "onClick invoked."); String mealprice = mealpricefield.getText().toString(); Log.i(tag, "mealprice is [" + mealprice + "]"); String answer = ""; if (mealprice.indexOf("$") == -1) { mealprice = "$" + mealprice; } float fmp = 0.0F; NumberFormat nf = java.text.NumberFormat.getCurrencyInstance(); fmp = nf.parse(mealprice).floatValue(); fmp *= 1.2; Log.i(tag, "Total Meal Price (unformatted) is [" + fmp + "]"); answer = "Full Price, including 20% Tip: " + nf.format(fmp); answerfield.setText(answer); Log.i(tag, "onClick Complete"); } catch(java.text.ParseException pe){ Log.i (tag ,"Parse exception caught"); answerfield.setText("Failed to parse amount?"); } catch(Exception e){ Log.e (tag ,"Failed to Calculate Tip:" + e.getMessage()); e.printStackTrace(); answerfield.setText(e.getMessage()); } } } ); } </code></pre> <p>Just in case it helps heres the xml</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"&gt; &lt;TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="Android Tip Calculator"/&gt; &lt;EditText android:id="@+id/mealprice" android:layout_width="fill_parent" android:layout_height="wrap_content" android:autoText="true"/&gt; &lt;Button android:id="@+id/calculate" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Calculate Tip"/&gt; &lt;TextView android:id= "@+id/answer" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text=""/&gt; &lt;/LinearLayout&gt; </code></pre> http://stackoverflow.com/questions/526866/compilation-error-on-zxing 0 Compilation error on Zxing monn3t 2009-02-09T01:24:08Z 2009-08-17T10:01:48Z <p>Since I don't own a G1 for development purposes, I am doing my best with the emulator. This said, I am trying to scan a JPEG image or a PNG image in my sdCard, with the ZXing (Zebra Zrossing) library.</p> <p>I tried to change the code in the Android project, so it would scan from an image in the sdCard, instead from the camera, without any luck.</p> <p>What I did next is probably the root of my problem.</p> <p>I tried to use the JAVASE code, within a new Android Project, to provide an image to the "modified" CommandLineRunner, and here is the thing:</p> <p>Eclipse would build the project, but won't run it. The VM log throuws me this message among others:</p> <p>**02-08 20:47:45.916: WARN/dalvikvm(619): VFY: unable to resolve static method 939: Ljavax/imageio/ImageIO;.read (Ljava/io/File;)Ljava/awt/image/BufferedImage; 02-08 20:47:45.926: WARN/dalvikvm(619): VFY: rejecting opcode 0x71 at 0x0004 02-08 20:47:45.926: WARN/dalvikvm(619): VFY: rejected Lcom/magoco/fread/FRead;.decode2 (Ljava/io/File;Ljava/util/Hashtable;Ljava/lang/String;)Ljava/lang/String; 02-08 20:47:45.926: WARN/dalvikvm(619): Verifier rejected class Lcom/magoco/fread/FRead; 02-08 20:47:45.926: WARN/dalvikvm(619): Class init failed in newInstance call (Lcom/magoco/fread/FRead;) 02-08 20:47:45.926: DEBUG/AndroidRuntime(619): Shutting down VM 02-08 20:47:45.926: WARN/dalvikvm(619): threadid=3: thread exiting with uncaught exception (group=0x40010e28) 02-08 20:47:45.937: ERROR/AndroidRuntime(619): Uncaught handler: thread main exiting due to uncaught exception 02-08 20:47:45.946: ERROR/AndroidRuntime(619): java.lang.VerifyError: com.magoco.fread.FRead **</p> <p>I searched the web for an answer and I got someone saying that this is common error on the Dalvikvm due to the fact that there is might be a class or library that was precompiled (true, outside Eclipse) and the VM wouldn't be able to use it.</p> <p>I am posting my code in the main Activity:</p> <p>package com.magoco.fread;</p> <p>import java.awt.image.BufferedImage; import java.io.BufferedInputStream; import java.io.ByteArrayInputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.util.Hashtable;</p> <p>import javax.imageio.ImageIO; import javax.imageio.ImageReader; import javax.imageio.stream.ImageInputStream;</p> <p>import android.app.Activity; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.os.Bundle; import android.widget.TextView;</p> <p>import com.google.zxing.DecodeHintType; import com.google.zxing.MonochromeBitmapSource; import com.google.zxing.MultiFormatReader; import com.google.zxing.ReaderException; import com.google.zxing.Result; import com.google.zxing.client.result.ParsedResult; import com.google.zxing.client.result.ResultParser;</p> <p>public class FRead extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); TextView tv = (TextView) this.findViewById(R.id.BarcodeResult); try { tv.setText(this.decodeOneArgument2("", false)); } catch (Exception e) { e.printStackTrace(); } }</p> <pre><code>public String decodeOneArgument2(String argument, boolean dumpResults) throws Exception { String barcode = ""; // File inputFile = new File(argument); File inputFile = new File("sdcard/dcim/pueblo.JPG"); /* TESTING THAT I'VE GOT A FILE */ System.out.println("FILE " + inputFile.toString()); // decode(new URI(argument), hints); decode2(inputFile, null, barcode); return barcode; } public String decode2(File f, Hashtable&lt;DecodeHintType, Object&gt; hints, String barcode) throws IOException { /* IF I COMMENT THE NEXT LINE, IT RUNS BUT OF COURSE NO RESULT */ BufferedImage image; try { image = ImageIO.read(f); } catch (IllegalArgumentException iae) { throw new FileNotFoundException("Resource not found: " + f); } try { MonochromeBitmapSource source = new BufferedImageMonochromeBitmapSource( image); Result result = new MultiFormatReader().decode(source, hints); ParsedResult parsedResult = ResultParser.parseResult(result); barcode = " format: " + result.getBarcodeFormat()+ result.getText() + "\nParsed result:\n"+ parsedResult.getDisplayResult(); System.out.println(" format: " + result.getBarcodeFormat()+ result.getText() + "\nParsed result:\n"+ parsedResult.getDisplayResult()); //return result; } catch (ReaderException e) { System.out.println(": No barcode found"); return null; } return barcode; } </code></pre> <p>}</p> <p>Thanks in Advance</p> <p>monn3t</p> http://stackoverflow.com/questions/1015082/why-is-my-animation-leaving-a-trail 1 Why is my animation leaving a trail? Tom Martin 2009-06-18T20:42:14Z 2009-06-24T23:36:58Z <p>I'm animating a an ImageView from the left to the right of the screen using a translate animation. The ImageView is place inside a RelativeLayout over the top of my main layout using FrameLayout.</p> <p>When I run the animation on the emulator everything works pretty well but when I use run it on my G1 it leaves visual artifacts behind and effects the rendering of the text component behind it.</p> <p>Is this a performance issue and I'm being too ambitious or is it a bug I can overcome?</p> <p>If it is a performance issue is there anything I can do to improve things?</p> http://stackoverflow.com/questions/853393/t-mobile-g1-msm7200-gpu-memory 0 T-Mobile G1 (MSM7200) GPU Memory Reflog 2009-05-12T15:33:43Z 2009-06-14T13:13:02Z <p>Hello. I'm trying to find some information regarding the available GPU (for OpenGL) memory on the T-Mobile G1.</p> <p>This phone has a MSM7200 Qualcomm chip inside with ATI Imageon GPU. </p> <p>Unfortunately I am not able to dig any info regarding the specifics of GPU memory usage.</p> <p>How much memory is available in total for the textures? Is the memory shared with the CPU memory?</p> <p>Thanks in advance, Eli</p> http://stackoverflow.com/questions/144254/getting-started-with-android 13 Getting started with Android FlySwat 2008-09-27T19:13:21Z 2009-06-03T20:44:05Z <p>So, I'll be getting my T-Mobile G1 within a month or so, and I'm excited to start developing for it.</p> <p>Has anyone started using it yet? Is there a dev wiki or anything set up for it yet?</p> http://stackoverflow.com/questions/902056/what-are-the-differences-between-t-mobile-g1-branded-htc-dream-and-googles-adp 7 What are the differences between T-Mobile G1 (branded HTC Dream) and Google's ADP1 (device for developers)? Vitaly Polonetsky 2009-05-23T17:55:01Z 2009-05-24T07:48:32Z <p>I was searching the internet but could not find a site comparing the two. I'm interested in developing for the android platform. G1 seems to be just the same as ADP1, but is there any small changes that will be noticeable in development?</p> <p>How about 3rd party software? What T-Mobile software exists in G1 which is not part of the ADP1 bundle and vice versa?</p> <p>Can I swap the original ADP1 firmware with T-Mobile branded one? As I understand people can already hack the G1 to run ADP1's non-branded firmware.</p> http://stackoverflow.com/questions/495734/is-there-any-way-to-prevent-an-android-app-from-being-removed 3 Is there any way to prevent an Android app from being removed? Jarett 2009-01-30T14:46:15Z 2009-02-27T19:42:40Z <p>Does anyone know if there's a way to either keep the user from uninstalling an app from an Android phone or reinstall it on removal? Before you flame me, please know that I have an app that's intended to be installed on the phone by a parent/employer/etc. and has a password-protected settings screen; the user would need to enter the password to remove the app.</p> http://stackoverflow.com/questions/276719/anyone-have-any-impressions-hints-tutorials-from-developing-for-google-android 5 Anyone have any impressions, hints, tutorials from developing for Google Android devices? Terry Donaghe 2008-11-10T00:07:33Z 2008-12-11T08:48:50Z <p>I have a T-Mobile G1 and I'm going to download the developer SDK and see if I can create a few simple apps for my phone. If you've done similar development, please answer below and tell me about your experience. Please share any links you found especially useful.</p> <p>Thanks!</p> http://stackoverflow.com/questions/318344/how-to-start-programming-for-android -2 How to start programming for Android? [closed] XC He 2008-11-25T18:12:35Z 2008-11-25T18:42:24Z <p>How to start programming for Android? What programming language I have to learn? Any trace technology in real target? How to interact with the real modem?</p>