如何使用工具欄和ScrollView?如何使用工具欄和ScrollView?
我有代碼:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="horizontal">
<android.support.v7.widget.Toolbar
android:id="@+id/my_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:elevation="4dp"/>
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:ems="10"
android:inputType="textMultiLine"
android:background="#000000"/>
</LinearLayout>
</ScrollView>
</LinearLayout>
但這沒有顯示的EditText。我應該糾正什麼?
我不必使用LinearLayout - 我可以改變它。我只能使用ScrollView和工具欄,但這些都是我的嘗試。從horizontal
的LinearLayout
使用'FrameLayout'而不是最'LinearLayout'的? –