1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2025-02-16 15:00:14 -05:00

Adjustments for the on screen keyboard

This commit is contained in:
Sebastian Kaspari 2010-03-12 00:49:50 +01:00
parent abc75c068a
commit 06bbd0442b
2 changed files with 5 additions and 2 deletions

View File

@ -17,7 +17,8 @@
android:label="@string/add_server_label">
</activity>
<activity
android:name=".view.ConversationActivity">
android:name=".view.ConversationActivity"
android:windowSoftInputMode="adjustResize">
</activity>
<service android:name=".irc.IRCService"></service>
</application>

View File

@ -59,5 +59,7 @@ along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
android:id="@+id/input"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:singleLine="true" />
android:singleLine="true"
android:inputType="textCapWords"
android:imeOptions="actionSend" />
</LinearLayout>