2009-12-17 15:27:57 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2009-05-30 07:54:49 -04:00
|
|
|
<!--
|
|
|
|
Yaaic - Yet Another Android IRC Client
|
|
|
|
|
2013-01-21 15:32:43 -05:00
|
|
|
Copyright 2009-2013 Sebastian Kaspari
|
2009-05-30 07:54:49 -04:00
|
|
|
|
|
|
|
This file is part of Yaaic.
|
|
|
|
|
|
|
|
Yaaic is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Yaaic is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
-->
|
2012-07-28 05:32:14 -04:00
|
|
|
<LinearLayout
|
2009-12-17 15:27:57 -05:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="fill_parent"
|
2010-04-05 12:26:18 -04:00
|
|
|
android:layout_height="fill_parent"
|
2012-01-21 05:30:41 -05:00
|
|
|
android:background="#ff000000">
|
2012-07-28 05:36:50 -04:00
|
|
|
<org.yaaic.indicator.ConversationIndicator
|
2012-01-21 05:30:41 -05:00
|
|
|
android:id="@+id/titleIndicator"
|
2010-11-18 12:52:19 -05:00
|
|
|
android:layout_width="fill_parent"
|
2012-01-21 05:30:41 -05:00
|
|
|
android:layout_height="wrap_content" />
|
2012-01-21 02:56:40 -05:00
|
|
|
<android.support.v4.view.ViewPager
|
|
|
|
android:id="@+id/pager"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_margin="0px"
|
|
|
|
android:unselectedAlpha="100"
|
|
|
|
android:padding="0dp" />
|
2010-11-18 12:52:19 -05:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/input"
|
2012-01-21 02:56:40 -05:00
|
|
|
android:layout_width="0dp"
|
2010-11-18 12:52:19 -05:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
2015-03-13 19:08:10 -04:00
|
|
|
android:inputType="textImeMultiLine"
|
2011-06-29 22:09:32 -04:00
|
|
|
android:imeOptions="actionSend" />
|
2010-11-18 12:52:19 -05:00
|
|
|
<Button
|
2010-08-29 10:42:50 -04:00
|
|
|
android:id="@+id/speech"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2010-09-05 16:04:55 -04:00
|
|
|
android:drawableLeft="@android:drawable/ic_btn_speak_now"
|
|
|
|
android:visibility="gone" />
|
2010-11-18 12:52:19 -05:00
|
|
|
</LinearLayout>
|
2012-07-28 05:32:14 -04:00
|
|
|
</LinearLayout>
|