请参阅以下代码。
我有一个片段,用一个ListView“lstv”将布局膨胀到代码中的LinearLayout容器“llytFragmentContainer”中。我遇到的问题是ListView不会滚动。我知道它可能与布局的设置有关。
在片段中扩充布局的代码:
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
// Inflate the layout for this fragment
View view = inflater.inflate(R.layout.frag, container, false);
}
片段布局:
<ListView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/lstv"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</ListView>
活动布局:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="100" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="10"
android:padding="10dp"
android:orientation="horizontal"
android:weightSum="100" >
<ProgressBar
android:id="@+id/progressBar"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="88"
style="@android:style/Widget.ProgressBar.Horizontal" />
<TextView
android:id="@+id/txtProgress"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="12"
android:layout_marginLeft="10dp" />
</LinearLayout>
<TextView
android:id="@+id/txtCounter"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="8"
android:gravity="center_horizontal"
android:textSize="20dp" />
<LinearLayout
android:id="@+id/llytFragmentContainer"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="67">
</LinearLayout>
<Button
android:id="@+id/btnEnd"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="15"
android:text="End Tour" />
</LinearLayout>