2017-05-08 03:16:43 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-07-26 13:40:55 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2017-05-08 03:16:43 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
|
|
|
>
|
|
|
|
|
|
|
|
<ScrollView
|
2017-07-26 13:40:55 +02:00
|
|
|
android:id="@+id/svContent"
|
2017-05-08 03:16:43 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:fillViewport="true"
|
|
|
|
>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
>
|
|
|
|
|
2017-05-11 16:07:29 +02:00
|
|
|
<jp.juggler.subwaytooter.view.MyEditText
|
2017-05-08 03:16:43 +02:00
|
|
|
android:id="@+id/etText"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="none"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</ScrollView>
|
|
|
|
|
2017-07-26 13:40:55 +02:00
|
|
|
<com.google.android.flexbox.FlexboxLayout
|
|
|
|
|
|
|
|
android:id="@+id/svFooterBar"
|
2017-05-08 03:16:43 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2017-07-26 13:40:55 +02:00
|
|
|
app:flexWrap="wrap"
|
2017-05-08 03:16:43 +02:00
|
|
|
>
|
|
|
|
|
2017-07-26 13:40:55 +02:00
|
|
|
<Button
|
|
|
|
android:id="@+id/btnCopy"
|
2017-05-08 03:16:43 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2017-07-26 13:40:55 +02:00
|
|
|
android:text="@string/copy"
|
|
|
|
android:textAllCaps="false"
|
|
|
|
/>
|
2017-05-08 03:16:43 +02:00
|
|
|
|
2017-07-26 13:40:55 +02:00
|
|
|
<Button
|
|
|
|
android:id="@+id/btnSend"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/send"
|
|
|
|
android:textAllCaps="false"
|
|
|
|
/>
|
2017-05-08 03:16:43 +02:00
|
|
|
|
2017-07-26 13:40:55 +02:00
|
|
|
<Button
|
|
|
|
android:id="@+id/btnSearch"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/search_web"
|
|
|
|
android:textAllCaps="false"
|
|
|
|
/>
|
2017-05-08 03:16:43 +02:00
|
|
|
|
2017-07-26 13:40:55 +02:00
|
|
|
<Button
|
2017-12-20 05:21:11 +01:00
|
|
|
android:id="@+id/btnSearchTS"
|
2017-07-26 13:40:55 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2017-12-20 05:21:11 +01:00
|
|
|
android:text="@string/toot_search_ts"
|
2017-07-26 13:40:55 +02:00
|
|
|
android:textAllCaps="false"
|
|
|
|
/>
|
2017-05-08 03:16:43 +02:00
|
|
|
|
2017-12-20 05:21:11 +01:00
|
|
|
<Button
|
|
|
|
android:id="@+id/btnSearchMSP"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/toot_search_msp"
|
|
|
|
android:textAllCaps="false"
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
2017-07-26 13:40:55 +02:00
|
|
|
<Button
|
|
|
|
android:id="@+id/btnMuteWord"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/mute_word"
|
|
|
|
android:textAllCaps="false"
|
|
|
|
/>
|
2017-05-08 03:16:43 +02:00
|
|
|
|
2018-07-07 07:15:16 +02:00
|
|
|
<Button
|
|
|
|
android:id="@+id/btnKeywordFilter"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/keyword_filter"
|
|
|
|
android:textAllCaps="false"
|
|
|
|
/>
|
2017-07-26 13:40:55 +02:00
|
|
|
</com.google.android.flexbox.FlexboxLayout>
|
2017-05-08 03:16:43 +02:00
|
|
|
</LinearLayout>
|