我是Android的新手,我在mi片段上有2个布局有问题:顶部的LinearLayout必须始终存在,还有Scrollview。问题是ScrollView没有完全滚动,从不显示带有文本“final”的按钮。在某一点ScrollView不能下降,我不知道问题是什么,我很确定很容易,但我找不到答案
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffffff"
android:id="@+id/relative2"
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Ajustes"
android:textSize="40sp"
android:layout_marginLeft="10dp"
android:layout_marginTop="30dp"
android:textColor="#004667"
android:textStyle="bold"/>
<RelativeLayout
android:layout_marginTop="110dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#004667"
android:id="@+id/rel21">
<TextView
android:id="@+id/textView2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:text="Name"
android:textColor="#FFFFFF"
android:layout_marginStart="38dp"/>
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_marginTop="15dp"
android:layout_marginStart="38dp"
android:text="Email"
android:textColor="#FFFFFF"/>
<ImageView
android:id="@+id/imageView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
app:srcCompat="@drawable/user" />
</RelativeLayout>
</RelativeLayout>
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:id="@+id/linear"
>
<Button
android:id="@+id/button6"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Button" />
<Button
/>
<Button
/>
<Button
/>
<Button
/>
<Button
/>
<Button
/>
<Button
android:id="@+id/ad"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="final" />
</LinearLayout>
</ScrollView>
</LinearLayout>
编辑:我正在使用BottomNavigationBar,最后一个按钮被它覆盖了,所以我只是将layout_marginBottom添加到了scrollview,现在工作正常。谢谢:D
答案 0 :(得分:0)
要在视图底部滚动,请确保在Scrollview中添加该属性,请查看:
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:focusable="true"
android:focusableInTouchMode="true"
android:fillViewport="true">
</ScrollView>
并在片段中执行:
scrollview.scrollTo(0, scrollview.getBottom());
快乐的编码!!
答案 1 :(得分:0)
问题是您的上部布局占用了所有空间并且滚动视图不可见。要解决此问题,请给出height而不是wrap_content。例如
$browser->keys('selector', 'element1',{enter}, 'otwell',{enter});