아직 정확히 어떤 기능을 하는지 확인되지 않고 있음

android:freezesText

If set, the text view will include its current complete text inside of its frozen icicle in addition to meta-data such as the current cursor position. By default this is disabled; it can be useful when the contents of a text view is not stored in a persistent place such as a content provider.

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or theme attribute (in the form "?[package:][type:]name") containing a value of this type.

This corresponds to the global attribute resource symbol freezesText.

android:inputType

The type of data being placed in a text field, used to help an input method decide how to let the user enter text. The constants here correspond to those defined by InputType. Generally you can select a single value, though some can be combined together as indicated. Setting this attribute to anything besides none also implies that the text is editable.

Must be one or more (separated by '|') of the following constant values.

ConstantValueDescription
none0x00000000There is no content type. The text is not editable.
text0x00000001

멀티라인을 지원하지 않아서 키보드에서 Enter 키 입력이 무시된다.
Just plain old text. Corresponds to 

TYPE_CLASS_TEXT |TYPE_TEXT_VARIATION_NORMAL.
textCapCharacters0x00001001Can be combined with text and its variations to request capitalization of all characters. Corresponds to TYPE_TEXT_FLAG_CAP_CHARACTERS.
textCapWords0x00002001Can be combined with text and its variations to request capitalization of the first character of every word. Corresponds toTYPE_TEXT_FLAG_CAP_WORDS.
textCapSentences0x00004001Can be combined with text and its variations to request capitalization of the first character of every sentence. Corresponds toTYPE_TEXT_FLAG_CAP_SENTENCES.
textAutoCorrect0x00008001Can be combined with text and its variations to request auto-correction of text being input. Corresponds to TYPE_TEXT_FLAG_AUTO_CORRECT.
textAutoComplete0x00010001Can be combined with text and its variations to specify that this field will be doing its own auto-completion and talking with the input method appropriately. Corresponds toTYPE_TEXT_FLAG_AUTO_COMPLETE.
textMultiLine0x00020001

문자 입력시 멀티 라인입력이 가능하다.
Can be combined with 

text and its variations to allow multiple lines of text in the field. If this flag is not set, the text field will be constrained to a single line. Corresponds to TYPE_TEXT_FLAG_MULTI_LINE.
textImeMultiLine0x00040001Can be combined with text and its variations to indicate that though the regular text view should not be multiple lines, the IME should provide multiple lines if it can. Corresponds toTYPE_TEXT_FLAG_IME_MULTI_LINE.
textNoSuggestions0x00080001Can be combined with text and its variations to indicate that the IME should not show any dictionary-based word suggestions. Corresponds to TYPE_TEXT_FLAG_NO_SUGGESTIONS.
textUri0x00000011Text that will be used as a URI. Corresponds to TYPE_CLASS_TEXT |TYPE_TEXT_VARIATION_URI.
textEmailAddress0x00000021Text that will be used as an e-mail address. Corresponds toTYPE_CLASS_TEXT | TYPE_TEXT_VARIATION_EMAIL_ADDRESS.
textEmailSubject0x00000031Text that is being supplied as the subject of an e-mail. Corresponds toTYPE_CLASS_TEXT | TYPE_TEXT_VARIATION_EMAIL_SUBJECT.
textShortMessage0x00000041Text that is the content of a short message. Corresponds toTYPE_CLASS_TEXT | TYPE_TEXT_VARIATION_SHORT_MESSAGE.
textLongMessage0x00000051Text that is the content of a long message. Corresponds toTYPE_CLASS_TEXT | TYPE_TEXT_VARIATION_LONG_MESSAGE.
textPersonName0x00000061Text that is the name of a person. Corresponds to TYPE_CLASS_TEXT |TYPE_TEXT_VARIATION_PERSON_NAME.
textPostalAddress0x00000071Text that is being supplied as a postal mailing address. Corresponds toTYPE_CLASS_TEXT | TYPE_TEXT_VARIATION_POSTAL_ADDRESS.
textPassword0x00000081Text that is a password. Corresponds to TYPE_CLASS_TEXT |TYPE_TEXT_VARIATION_PASSWORD.
textVisiblePassword0x00000091Text that is a password that should be visible. Corresponds toTYPE_CLASS_TEXT | TYPE_TEXT_VARIATION_VISIBLE_PASSWORD.
textWebEditText0x000000a1Text that is being supplied as text in a web form. Corresponds toTYPE_CLASS_TEXT | TYPE_TEXT_VARIATION_WEB_EDIT_TEXT.
textFilter0x000000b1Text that is filtering some other data. Corresponds toTYPE_CLASS_TEXT | TYPE_TEXT_VARIATION_FILTER.
textPhonetic0x000000c1Text that is for phonetic pronunciation, such as a phonetic name field in a contact entry. Corresponds to TYPE_CLASS_TEXT |TYPE_TEXT_VARIATION_PHONETIC.
textWebEmailAddress0x000000d1Text that will be used as an e-mail address on a web form. Corresponds to TYPE_CLASS_TEXT | TYPE_TEXT_VARIATION_WEB_EMAIL_ADDRESS.
textWebPassword0x000000e1Text that will be used as a password on a web form. Corresponds toTYPE_CLASS_TEXT | TYPE_TEXT_VARIATION_WEB_PASSWORD.
number0x00000002A numeric only field. Corresponds to TYPE_CLASS_NUMBER |TYPE_NUMBER_VARIATION_NORMAL.
numberSigned0x00001002Can be combined with number and its other options to allow a signed number. Corresponds to TYPE_CLASS_NUMBER |TYPE_NUMBER_FLAG_SIGNED.
numberDecimal0x00002002Can be combined with number and its other options to allow a decimal (fractional) number. Corresponds to TYPE_CLASS_NUMBER |TYPE_NUMBER_FLAG_DECIMAL.
numberPassword0x00000012A numeric password field. Corresponds to TYPE_CLASS_NUMBER |TYPE_NUMBER_VARIATION_PASSWORD.
phone0x00000003For entering a phone number. Corresponds to TYPE_CLASS_PHONE.
datetime0x00000004For entering a date and time. Corresponds to TYPE_CLASS_DATETIME |TYPE_DATETIME_VARIATION_NORMAL.
date0x00000014For entering a date. Corresponds to TYPE_CLASS_DATETIME |TYPE_DATETIME_VARIATION_DATE.
time0x00000024For entering a time. Corresponds to TYPE_CLASS_DATETIME |TYPE_DATETIME_VARIATION_TIME.

This corresponds to the global attribute resource symbol inputType.


2012년 11월 22일 목요일

게임 개발자를 위한 유튜브 세미나 동영상


지난 11월 15일에 있었던 게임 개발자를 위한 유튜브 세미나의 동영상이 업로드되었습니다. 많은 분들이 참석해 주셔서 즐거운 시간을 보냈구요. 여러모로 유익한 시간이었습니다. 관심 가지고 참석 지원해 주신 분들, 참석해 주신 분들 그리고 동영상을 시청하시는 분들 모두에게 감사드립니다.

세미나 자료: https://docs.google.com/file/d/0B4sGAlXaZCXNUzdGRW94S1BoelE/edit

http://googledevkr.blogspot.kr/2012/11/blog-post_12.html

Published - 유튜브를 활용한 게임 확산 전략 (Start Playing The Distribution Game on YouTube) v00.03.01.pdf .pdf

2012년 11월 7일 수요일

게임 개발자를 위한 유튜브 소개 시간을 마련했습니다~

게임 개발자를 위한 유튜브 소개 시간을 마련했습니다. 여러분의 게임에 유튜브를 결합할 수 있는 다양한 방법들과 성공 사례들을 공유합니다. 그동안 유튜브를 이용자 관점에서 동영상 시청 용도로만 생각하고 계신 분들이 많으실 텐데 유튜브에서 제공되는 다양한 API들이 어떤 기능을 가지고 있으며 어떻게 이용될 수 있는지를 직접 확인하실 수 있습니다.

일시: 2012년 11월 15일 오후 6시 30분 ~ 9시
장소: 구글코리아 사무실

- 제목: Start Playing the Distribution Game on YouTube (Jarek Wilkiewicz, Sang Kim)
- 내용: YouTube has over 800M unique visitors who watch 4 billion hours of video each month. One of the top categories on YouTube is gaming. By integrating your game with YouTube you can share rich and authentic game experiences that are more likely to convert viewers into gamers than any other medium. In this session, we will highlight fun and enlightening integration examples in PC, console and mobile areas. We will cover best practices from both the technical and business perspective. Last but not least, we will share our favorite gameplay videos with you!

관심있는 게임 개발자 여러분들의 많은 참여 부탁드립니다~!

참고
- 저녁 식사가 제공됩니다.
- 본 세션은 영어로 진행되며 별도의 통역은 제공되지 않습니다.
- 주차는 제공되지 않으니 대중교통을 이용해 주시기를 부탁드립니다.

참가 신청하기! - 참가 신청은 11월 13일 오전 10시까지 부탁드립니다. 선착순이 아니며 좌석이 한정되어 있어 참석 대상자로 선정되신 분께는 별도로 연락을 드리겠습니다.