fixed quote input text ime flags

This commit is contained in:
Mariotaku Lee 2015-12-28 16:44:24 +08:00
parent 63946e2831
commit 2505b42ec2
1 changed files with 14 additions and 14 deletions

View File

@ -17,15 +17,15 @@
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/status_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/element_spacing_normal"
android:paddingLeft="@dimen/element_spacing_large"
android:paddingRight="@dimen/element_spacing_large"
android:paddingTop="@dimen/element_spacing_normal">
<ScrollView android:id="@+id/status_container"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/element_spacing_normal"
android:paddingLeft="@dimen/element_spacing_large"
android:paddingRight="@dimen/element_spacing_large"
android:paddingTop="@dimen/element_spacing_normal">
<LinearLayout
android:layout_width="match_parent"
@ -44,11 +44,11 @@
android:completionThreshold="1"
android:focusable="true"
android:hint="@string/comment_hint"
android:inputType="textShortMessage|textMultiLine"
android:inputType="textMultiLine|textLongMessage|textCapSentences"
android:singleLine="false"
android:visibility="visible">
<requestFocus />
<requestFocus/>
</org.mariotaku.twidere.view.ComposeEditText>
<org.mariotaku.twidere.view.StatusTextCountView
@ -65,7 +65,7 @@
android:gravity="center_vertical|start"
android:paddingLeft="@dimen/element_spacing_normal"
android:paddingRight="@dimen/element_spacing_normal"
tools:text="140" />
tools:text="140"/>
<org.mariotaku.twidere.view.ActionIconButton
android:id="@+id/comment_menu"
@ -77,10 +77,10 @@
android:layout_below="@+id/edit_comment"
android:color="?android:textColorTertiary"
android:focusable="false"
android:src="@drawable/ic_action_more_vertical" />
android:src="@drawable/ic_action_more_vertical"/>
</RelativeLayout>
<include layout="@layout/card_item_status_common" />
<include layout="@layout/card_item_status_common"/>
</LinearLayout>
</ScrollView>