<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="30dp" android:orientation="horizontal"> <TextView android:id="@+id/tv1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="时间:" android:textSize="20dp"/> <EditText android:id="@+id/ed_name" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="请输入预约时间" android:textSize="20dp" /> </LinearLayout> 布局超过app的界面 如何调整实现下滑能看到超过的内容
时间: 2023-06-24 19:08:57 浏览: 165
你可以将布局包裹在一个 ScrollView 中,这样用户就可以通过滑动来查看超出屏幕的部分。修改后的代码如下:
```
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:orientation="horizontal">
<TextView
android:id="@+id/tv1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="时间:"
android:textSize="20dp"/>
<EditText
android:id="@+id/ed_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="请输入预约时间"
android:textSize="20dp"
/>
</LinearLayout>
</ScrollView>
```
这样就可以通过滑动来查看超出屏幕的部分。
阅读全文