photo / mobile-android

Trovebox mobile application for Android
Apache License 2.0
120 stars 64 forks source link

Make capital letters in title optional #451

Open sushimustwrite opened 11 years ago

sushimustwrite commented 11 years ago

Currently when you upload a new photo and enter a title, the first letter of every word is capitalized. A user can go back and fix it, but doing so is annoying. This title is also the title of the tweet when sharing a photo on Twitter (and probably Facebook, though I've never tested this part myself), So Having The Title In Caps Like This Does Not Look Pretty.

Is there any way to go back to standard capitalization, or at least make this setting optional?

jmathai commented 11 years ago

We should go to standard "sentence" capitalization. Please, no option for this :)

patricksan commented 11 years ago

No settings for that guys. We set the default capitalisation.

patricksan commented 11 years ago

Sorry. Just saw your message now. At least is the same opinion. :-)

httpdispatch commented 11 years ago

Currently we are using android:inputType="textCapWords" which causes each word first letter to be capitalized by default. We can change that to textCapSentences which will capitalize only first letter of each sentence

http://developer.android.com/reference/android/widget/TextView.html#attr_android:inputType

patricksan commented 11 years ago

Let's change to textCapSentences

sushimustwrite commented 11 years ago

Sounds good to me.