我在项目中使用scrollView
。 textview
中有一些问题和radioButton中的问题答案。我应该向scrollBar
添加水平layout
以在Activity
中显示更多问题。但是scrollview
不起作用。我也不能在那里添加scrollBar
,这似乎不起作用。我刚刚在StackOverflow中查看了一些问题。根据他们我的代码应该工作。但它不起作用。请帮帮我。
job_security.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools">
<LinearLayout
android:id="@+id/radio_layout"
android:layout_width="match_parent"
android:layout_height="222dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:orientation="vertical">
<ScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scrollbars="vertical">
<TextView
android:id="@+id/textView4"
android:layout_width="360dp"
android:layout_height="26dp"
android:layout_marginTop="20dp"
android:text="@string/job_security_question1"
android:textSize="16sp" />
<TextView
android:id="@+id/textView5"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/job_security_question1.2"
android:textSize="12sp" />
<RadioGroup
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:orientation="horizontal">
<RadioButton
android:id="@+id/rd1_yes"
android:layout_width="190dp"
android:layout_height="match_parent"
android:buttonTint="@color/colorPrimary"
android:gravity="left|center_vertical"
android:text="@string/radio_yes" />
<RadioButton
android:id="@+id/rd1_no"
android:layout_width="190dp"
android:layout_height="match_parent"
android:buttonTint="@color/colorPrimary"
android:text="@string/radio_no" />
</RadioGroup>
<TextView
android:id="@+id/textView6"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="@string/job_security_question2" />
<RadioGroup
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:orientation="horizontal">
<RadioButton
android:id="@+id/rd2_yes"
android:layout_width="190dp"
android:layout_height="match_parent"
android:buttonTint="@color/colorPrimary"
android:gravity="left|center_vertical"
android:text="@string/radio_yes" />
<RadioButton
android:id="@+id/rd2_no"
android:layout_width="190dp"
android:layout_height="match_parent"
android:buttonTint="@color/colorPrimary"
android:text="@string/radio_no" />
</RadioGroup>
</ScrollView>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp">
<Button
android:id="@+id/btn_login"
style="?android:attr/buttonStyleSmall"
android:layout_width="178dp"
android:layout_height="40dip"
android:layout_centerHorizontal="true"
android:background="@drawable/buton_radious"
android:clickable="true"
android:focusable="true"
android:text="@string/send_button"
android:textColor="@android:color/white"
android:textSize="14sp" />
</RelativeLayout>
</LinearLayout>
答案 0 :(得分:2)
内部ScrollView必须只包含一个布局!
此示例代码解决了您的问题
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<!-- here add your views -->
</LinearLayout>
</ScrollView>