1
**複数行の編集テキストを作成して入力しようとしていますが、ポインタが画面上を上下に移動しています。 ..キーボードの後ろにあります。**複数行作成テキストを作成してアクティビティをスクロールする
<android.support.design.widget.TextInputLayout
android:id="@+id/input_layout_details"
android:layout_width="326dp"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_below="@+id/textView2"
android:layout_marginTop="18dp"
android:textColorHint="#6c6c6c"
app:hintTextAppearance="@style/HintXlarge"
android:layout_weight="0.97">
<EditText
android:id="@+id/input_details"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:hint="@string/hint_Details"
android:inputType="textMultiLine"
android:selectAllOnFocus="false"
android:textColor="@android:color/background_light"
android:textColorHint="#6c6c6c"
android:textIsSelectable="false"
android:textSize="30sp"
android:theme="@style/Widget.App.EditText"/>
</android.support.design.widget.TextInputLayout>
私が必要とするものではなく、テキストをスクロールせずにすべてのアクティビティをスクロールしようとしています –