[android-developers] Where is the source code of ADT

2011-04-02 Thread
Hi All, Could anyone tell me that where the source code of ADT (Android Development Tools) plugin is. Thanks in advance! -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] USB Driver for Windows does not work for Nexus S

2011-02-18 Thread
http://developer.android.com/sdk/win-usb.html exactly says USB Driver for Windows, Revision 4 (December 2010) adds support for the Nexus S, but I can't install the driver for a Nexus S on Windows 7. Off course, I know how to install it as I have done this many times before. Then I go to read the

[android-developers] How to switch between full screen and normal screen

2009-11-23 Thread
Hi All, It is well known that we can make a full screen Activity (no status bar, no title bar) by 1. requestWindowFeature(Window.FEATURE_NO_TITLE); 2. getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); But the requestWindowFeature must

[android-developers] DDMS logging level doesn't work

2009-09-14 Thread
I have configured the DDMS logging level, but it does not work. The logging level is always Verbose. I have tried this in both Eclipse plugin and DDMS in sdk. Neither of them works. I know filter can be added to LogCat, but it is not what I need. I want the log not outputed at all. Any help

[android-developers] Is there small style editText and spinner

2009-08-07 Thread
I know there is a buttonStyleSmall can create a small button. But there is not edittextStyleSmall or spinnerStyleSmall. How to make edittext and spinner shorter? they are too high in my application. Thanks in advance. --~--~-~--~~~---~--~~ You received this

[android-developers] Questions about Android Calendar and Uninstall application

2009-07-25 Thread
Hi, All, I want to have a look at the application Android Calendar, but found there is no Calendar in the SDK. Then, I fetched all the source of Android, make, run the image, at last, I see the Calendar icon in the SlidingDrawer. However, after I click on it, just a blank creen splash, and

[android-developers] Re: How to create a non-default style widget programmatically

2009-07-22 Thread
android:max=100 android:progress=50 android:secondaryProgress=75 / But how to create one programmatically? If just new ProgressBar(fContext), it is Default ProgressBar style. Please help me. Thanks a lot in advance. (*^__^*) On Jul 21, 4:22 pm, 单单 birb...@gmail.com wrote: Hi All

[android-developers] How to create a non-default style widget programmatically

2009-07-21 Thread
Hi All, In ApiDemo, there is a progressBar demo. It creates a horizontal progress bar with a xml. ProgressBar android:id=@+id/progress_horizontal style=?android:attr/progressBarStyleHorizontal android:layout_width=200dip android:layout_height=wrap_content

[android-developers] Why fill_parent LinearLayout occupy other view's space

2009-07-20 Thread
Hi All, here is a layout. ?xml version=1.0 encoding=utf-8? LinearLayout xmlns:android=http://schemas.android.com/apk/res/ android android:layout_width=fill_parent android:layout_height=fill_parent android:orientation=vertical LinearLayout

[android-developers] Re: Why fill_parent LinearLayout occupy other view's space

2009-07-20 Thread
there. Peliwww.openintents.org On Jul 20, 9:00 pm, 单单 birb...@gmail.com wrote: Hi All, here is a layout. ?xml version=1.0 encoding=utf-8? LinearLayout xmlns:android=http://schemas.android.com/apk/res/ android         android:layout_width=fill_parent         android:layout_height

[android-developers] Re: LinearLayout in LinearLayout

2009-07-16 Thread
LinearLayout in LinearLayout throw the Exception java.lang.RuntimeException: mBaselineAlignedChildIndex of LinearLayout set to an index that is out of bounds. setBaselineAligned to false with parent LinearLayout can resolve this. On Jun 25, 9:28 pm, Mr.No f.hi...@arcor.de wrote: Hi folks,

[android-developers] How to hide the scrollbar, please

2009-07-13 Thread
The requirements is the scrollbar of a list is usually unvisible. Only when user scroll it, the scrollbar shows. Could anyone tell me how to achieve this? Any help will be highly appriciated! --~--~-~--~~~---~--~~ You received this message because you are

[android-developers] How to hide the scrollbar, please

2009-07-10 Thread
The requirements is the scrollbar of a list is usually unvisible. Only when user scroll it, the scrollbar shows. Could anyone tell me how to achieve this? Any help will be highly appriciated! --~--~-~--~~~---~--~~ You received this message because you are

[android-developers] How to implement the slide effect like desktop

2009-07-09 Thread
For example, I have an application containing 3 interfaces(each one occupys a screen), I want to switch different interfaces by touching on the screen. Just like the desktop has 3 parts, we can move from one to anohter by touching. Can anyone tell me how to implement the kind of effect or where

[android-developers] How to setclip of a view

2009-03-17 Thread
There is another post asked this question. A guy give a solution using invalidate(int, int, int, int). But this seems work only once -- the drawing right after the invalidate. After that time of drawing, every repaint will draw the whole view. I need a real setClip permanent. Any help will be