/sdk/sdk_common/src/com/android/ide/common/resources/configuration/ |
D | DeviceConfigHelper.java | 47 Screen screen = hw.getScreen(); in getFolderConfig() local 48 config.setDensityQualifier(new DensityQualifier(screen.getPixelDensity())); in getFolderConfig() 51 if (screen.getXDimension() > screen.getYDimension()) { in getFolderConfig() 52 sdq = new ScreenDimensionQualifier(screen.getXDimension(), screen.getYDimension()); in getFolderConfig() 54 sdq = new ScreenDimensionQualifier(screen.getYDimension(), screen.getXDimension()); in getFolderConfig() 57 config.setScreenRatioQualifier(new ScreenRatioQualifier(screen.getRatio())); in getFolderConfig() 58 config.setScreenSizeQualifier(new ScreenSizeQualifier(screen.getSize())); in getFolderConfig() 60 config.setTouchTypeQualifier(new TouchScreenQualifier(screen.getMechanism())); in getFolderConfig()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/ |
D | completionvalues1-expected-completion66.txt | 2 …sity-independent Pixels</b> - an abstract unit that is based on the physical density of the screen. 4 17pt : <b>Points</b> - 1/72 of an inch based on the physical size of the screen. 5 17mm : <b>Millimeters</b> - based on the physical size of the screen. 6 17in : <b>Inches</b> - based on the physical size of the screen. 7 17px : <b>Pixels</b> - corresponds to actual pixels on the screen. Not recommended.
|
D | completion1-expected-completion4.txt | 2 …sity-independent Pixels</b> - an abstract unit that is based on the physical density of the screen. 4 50pt : <b>Points</b> - 1/72 of an inch based on the physical size of the screen. 5 50mm : <b>Millimeters</b> - based on the physical size of the screen. 6 50in : <b>Inches</b> - based on the physical size of the screen. 7 50px : <b>Pixels</b> - corresponds to actual pixels on the screen. Not recommended.
|
D | completionvalues1-expected-completion67.txt | 2 …sity-independent Pixels</b> - an abstract unit that is based on the physical density of the screen. 4 17pt : <b>Points</b> - 1/72 of an inch based on the physical size of the screen. 5 17mm : <b>Millimeters</b> - based on the physical size of the screen. 6 17in : <b>Inches</b> - based on the physical size of the screen. 7 17px : <b>Pixels</b> - corresponds to actual pixels on the screen. Not recommended.
|
D | completionvalues1-expected-completion24.txt | 2 …sity-independent Pixels</b> - an abstract unit that is based on the physical density of the screen. 4 17pt : <b>Points</b> - 1/72 of an inch based on the physical size of the screen. 5 17mm : <b>Millimeters</b> - based on the physical size of the screen. 6 17in : <b>Inches</b> - based on the physical size of the screen. 7 17px : <b>Pixels</b> - corresponds to actual pixels on the screen. Not recommended.
|
D | completion1-expected-completion5.txt | 2 …sity-independent Pixels</b> - an abstract unit that is based on the physical density of the screen.
|
D | manifest-expected-completion18.txt | 16 …inished when its task is brought to the foreground by relaunching from the home screen. [boolean] 18 …ether an activity's task should be cleared when it is re-launched from the home screen. [boolean]
|
D | manifest-expected-completion16.txt | 11 supports-screens : The "supports-screens" specifies the screen dimensions an application supports.
|
/sdk/sdkmanager/libs/sdklib/tests/src/com/android/sdklib/devices/ |
D | DeviceParserTest.java | 61 Screen screen = hw.getScreen(); in testValidDevices() local 62 assertEquals(screen.getSize(), ScreenSize.NORMAL); in testValidDevices() 63 assertEquals(4.65, screen.getDiagonalLength()); in testValidDevices() 64 assertEquals(Density.XHIGH, screen.getPixelDensity()); in testValidDevices() 65 assertEquals(ScreenRatio.LONG, screen.getRatio()); in testValidDevices() 66 assertEquals(720, screen.getXDimension()); in testValidDevices() 67 assertEquals(1280, screen.getYDimension()); in testValidDevices() 68 assertEquals(316.0, screen.getXdpi()); in testValidDevices() 69 assertEquals(316.0, screen.getYdpi()); in testValidDevices() 70 assertEquals(Multitouch.JAZZ_HANDS, screen.getMultitouch()); in testValidDevices() [all …]
|
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/devices/ |
D | DeviceWriter.java | 134 Element screen = doc.createElement(PREFIX + DeviceSchema.NODE_SCREEN); in generateHardwareNode() local 135 hardware.appendChild(screen); in generateHardwareNode() 137 addElement(doc, screen, DeviceSchema.NODE_SCREEN_SIZE, s.getSize().getResourceValue()); in generateHardwareNode() 138 addElement(doc, screen, DeviceSchema.NODE_DIAGONAL_LENGTH, in generateHardwareNode() 140 addElement(doc, screen, DeviceSchema.NODE_PIXEL_DENSITY, in generateHardwareNode() 142 addElement(doc, screen, DeviceSchema.NODE_SCREEN_RATIO, s.getRatio().getResourceValue()); in generateHardwareNode() 145 screen.appendChild(dimensions); in generateHardwareNode() 151 addElement(doc, screen, DeviceSchema.NODE_XDPI, String.format("%.2f", s.getXdpi())); in generateHardwareNode() 152 addElement(doc, screen, DeviceSchema.NODE_YDPI, String.format("%.2f", s.getYdpi())); in generateHardwareNode() 155 screen.appendChild(touch); in generateHardwareNode()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/ |
D | DeviceMenuListener.java | 195 Screen screen = d.getDefaultHardware().getScreen(); in getNexusLabel() local 196 float length = (float) screen.getDiagonalLength(); in getNexusLabel() 234 Screen screen = device.getDefaultHardware().getScreen(); in getResolutionString() local 237 screen.getXDimension(), in getResolutionString() 238 screen.getYDimension(), in getResolutionString() 239 screen.getPixelDensity().getResourceValue()); in getResolutionString()
|
/sdk/templates/activities/MasterDetailFlow/root/src/app_package/ |
D | ContentDetailFragment.java.ftl | 13 * A fragment representing a single ${objectKind} detail screen. 32 * fragment (e.g. upon screen orientation changes).
|
D | ContentDetailActivity.java.ftl | 10 * An activity representing a single ${objectKind} detail screen. This 30 // (e.g. when rotating the screen from portrait to landscape).
|
D | ContentListActivity.java.ftl | 45 // large-screen layouts (res/values-large and
|
D | ContentListFragment.java.ftl | 64 * fragment (e.g. upon screen orientation changes).
|
/sdk/templates/docs/ |
D | prettify.css | 2 @media screen{
|
/sdk/apps/DeviceConfig/src/com/example/android/deviceconfig/ |
D | ConfigGenerator.java | 192 Element screen = doc.createElement(PREFIX + NODE_SCREEN); in generateConfig() local 193 hardware.appendChild(screen); in generateConfig() 196 screen.appendChild(screenSize); in generateConfig() 218 screen.appendChild(diagonalLength); in generateConfig() 225 screen.appendChild(pixelDensity); in generateConfig() 249 screen.appendChild(screenRatio); in generateConfig() 265 screen.appendChild(dimensions); in generateConfig() 276 screen.appendChild(xdpi); in generateConfig() 280 screen.appendChild(ydpi); in generateConfig() 284 screen.appendChild(touch); in generateConfig()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt.package/ |
D | go.css | 2 …screen,projection,print{html,input,textarea{font-family:arial,sans-serif}html{line-height:1.54}bod…
|
/sdk/templates/activities/FullscreenActivity/root/res/layout/ |
D | activity_fullscreen.xml.ftl | 8 <!-- The primary full-screen view. This can be replaced with whatever view
|
/sdk/templates/activities/FullscreenActivity/root/src/app_package/ |
D | FullscreenActivity.java.ftl | 18 * An example full-screen activity that shows and hides the system UI (i.e. 80 // screen.
|
/sdk/templates/activities/SettingsActivity/root/src/app_package/ |
D | SettingsActivity.java.ftl | 135 * Helper method to determine if the device has an extra-large screen. For 147 * doesn't have an extra-large screen. In these cases, a single-pane
|
/sdk/apps/SdkController/ |
D | Implementation.txt | 16 sending sensor data, sending multi-touch events, receiving screen updates,
|
/sdk/emulator/opengl/ |
D | README | 34 EGL/GLES commands into desktop GL 2.0 ones, and rendering to an off-screen
|
/sdk/eclipse/ |
D | changes.txt | 335 screen size. 382 and title bars to more accurately reflect the actual screen space 466 - Added more device screen types for the layout editor. All screen 482 from the Home screen of the emulator. 597 screen), or specific activity, or none.
|
/sdk/templates/activities/LoginActivity/root/src/app_package/ |
D | LoginActivity.java.ftl | 23 * Activity which displays a login screen to the user, offering registration as
|