欢迎。
我对 Scrollview 有疑问。
这正是底部的按钮每次都应该具有相同的大小,并且应该移动复选框中的文本。
我究竟做错了什么?
下面是代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/tvKtorePytanie"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="right"
android:text="1/10" />
<ImageView
android:id="@+id/imageView"
android:layout_width="220dp"
android:layout_height="180dp"
android:src="@drawable/icon"
android:layout_gravity="center" />
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearLayout2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TextView
android:id="@+id/tvPytanie"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:text="Pytanie"
android:textSize="16sp" />
<CheckBox
android:id="@+id/cbOdpowiedz1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_margin="1dip"
android:text="CheckBox"
android:textSize="10sp" />
<CheckBox
android:id="@+id/cbOdpowiedz2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_margin="1dip"
android:text="CheckBox"
android:textSize="10sp" />
<CheckBox
android:id="@+id/cbOdpowiedz3"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_margin="1dip"
android:text="CheckBox"
android:textSize="10sp" />
</LinearLayout>
</ScrollView>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearLayout2"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="bottom"
android:orientation="horizontal" >
<Button
android:id="@+id/bPoprzednie"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Poprzednie" />
<Button
android:id="@+id/bSprawdz"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Sprawdź" />
<Button
android:id="@+id/bNastepne"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Następne" />
</LinearLayout>
</LinearLayout>