diff options
| author | Android (Google) Code Review <android-gerrit@google.com> | 2009-06-29 16:37:17 -0700 |
|---|---|---|
| committer | The Android Open Source Project <initial-contribution@android.com> | 2009-06-29 16:37:17 -0700 |
| commit | f6ff591decdea6299aab1a5b6f95917800571de4 (patch) | |
| tree | dee211f3383b10360a61cb4194a1bcc2cc26bdd4 /libs/utils | |
| parent | 8c3fc63576c81139a8d16b608550568ad52237c6 (diff) | |
| parent | 72eb0acad5cffc57ce5006f6deab29ee259e461e (diff) | |
| download | frameworks_base-f6ff591decdea6299aab1a5b6f95917800571de4.zip frameworks_base-f6ff591decdea6299aab1a5b6f95917800571de4.tar.gz frameworks_base-f6ff591decdea6299aab1a5b6f95917800571de4.tar.bz2 | |
am 72eb0aca: Merge change 5483 into donut
Merge commit '72eb0acad5cffc57ce5006f6deab29ee259e461e'
* commit '72eb0acad5cffc57ce5006f6deab29ee259e461e':
Expand support for different screen sizes.
Diffstat (limited to 'libs/utils')
| -rw-r--r-- | libs/utils/ResourceTypes.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libs/utils/ResourceTypes.cpp b/libs/utils/ResourceTypes.cpp index e4f9f0f..7a33220 100644 --- a/libs/utils/ResourceTypes.cpp +++ b/libs/utils/ResourceTypes.cpp @@ -3919,7 +3919,7 @@ void ResTable::print(bool inclValues) const printf(" NON-INTEGER ResTable_type ADDRESS: %p\n", type); continue; } - printf(" config %d lang=%c%c cnt=%c%c orien=%d touch=%d density=%d key=%d infl=%d nav=%d w=%d h=%d\n", + printf(" config %d lang=%c%c cnt=%c%c orien=%d touch=%d density=%d key=%d infl=%d nav=%d w=%d h=%d lyt=%d\n", (int)configIndex, type->config.language[0] ? type->config.language[0] : '-', type->config.language[1] ? type->config.language[1] : '-', @@ -3932,7 +3932,8 @@ void ResTable::print(bool inclValues) const type->config.inputFlags, type->config.navigation, dtohs(type->config.screenWidth), - dtohs(type->config.screenHeight)); + dtohs(type->config.screenHeight), + type->config.screenLayout); size_t entryCount = dtohl(type->entryCount); uint32_t entriesStart = dtohl(type->entriesStart); if ((entriesStart&0x3) != 0) { |
