私のスクリーンショットに見られるように、EditTextのようなビューはオーバーフローまたは消滅しています。そのため、複数行のEditTextの右側にスクロールバーが表示されません。Androidで再生回数がオーバーフローまたは消滅しました5
どうすれば修正できますか?私はmatch_parentとfill_parentを試しましたが、違いを見ることはできません。 'wrap_content'はフォームにとってはうまくありません。ここで
Screenshot Android Studio, EditText overflows
私のxmlです:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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:orientation="vertical"
tools:context=".MyActivity">
<GridLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:columnCount="2">
<TextView android:text="Label for first EditText" />
<EditText
android:id="@+id/et_id"
android:layout_width="match_parent"
android:lines="1"
android:maxLength="13"
android:maxLines="1" />
<TextView android:text="Another Label for another ET" />
<EditText
android:id="@+id/et_new_description"
android:layout_width="match_parent"
android:lines="3"
android:maxLines="10"
android:inputType="textMultiLine"
android:scrollbars="vertical" <!-- can't see this -->
android:scrollbarAlwaysDrawVerticalTrack="true"/>
</GridLayout>
<android.support.v7.widget.ButtonBarLayout
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:layout_alignParentBottom="true">
<Button
android:id="@+id/button_cancel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:drawableLeft="@drawable/filter"
android:text="cancel" />
<Button
android:id="@+id/button_save"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:drawableLeft="@android:drawable/ic_menu_save"
android:text="save" />
</android.support.v7.widget.ButtonBarLayout>
</RelativeLayout>
あなたのビューは 'layout_width'と' layout_height'の両方を必要としていますか、それらを表示していないのでしょうか、スタイルや何かで扱っていますか? – zgc7009
属性はこれ以上ありません。 – EV221
@ EV221デバイス上で実行してみてください。レイアウトエディタでは、実際のデバイスに表示される方法とまったく同じように表示されないことがあります。 – Karakuri