迷茫2017-04-17 14:57:03
scrollview の全表示のリストビューとグリッドビュー
public class NoScrollGridView extends GridView {
public NoScrollGridView(Context context, AttributeSet attrs) {
super(コンテキスト、属性);
}
public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int mExpandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2,
MeasureSpec.AT_MOST);
super.onMeasure(widthMeasureSpec, mExpandSpec);
}
}
public class NoScrollListView extends ListView{
public NoScrollListView(Context context, AttributeSet attrs){
super(コンテキスト、属性);
}
public void onMeasure(int widthMeasureSpec, int heightMeasureSpec){
int mExpandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2,
MeasureSpec.AT_MOST);
super.onMeasure(widthMeasureSpec, mExpandSpec);
}
}
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<スクロールビュー
android:layout_width="match_parent"
android:layout_height="wrap_content">
<リニアレイアウト
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="垂直">
<com.xxx.xxx.xxx.NoScrollListView
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<com.xxx.xxx.xxx.NoScrollGridView
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
</ScrollView>
</LinearLayout>