我在這裏研究了所有相關的問題,但仍無法解決此問題。 我有一個帶有自定義適配器的GridView。這個GridView應該顯示兩列中的方形項目。我爲項目佈局的SquareLinearLayout類:帶有方形項目的GridView不會在Android 4上滾動
public class SquareLinearLayout extends LinearLayout {
public SquareLinearLayout(Context context) {
super(context);
}
public SquareLinearLayout(Context context, AttributeSet attrs) {
super(context, attrs);
}
public SquareLinearLayout(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
@Override
public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, widthMeasureSpec);
}
}
網格佈局適配器充氣鑑於此:
@Override
public View getView(int position, View convertView, ViewGroup parent) {
if (convertView == null) {
LayoutInflater inflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = inflater.inflate(R.layout.category_entry, parent, false);
}
if (convertView != null) {
((TextView) convertView.findViewById(R.id.category_name)).setText(getItem(position).Name());
}
return convertView;
}
和項目:
<xxx.SquareLinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:background="@color/colorPrimaryTransparent"
android:layout_marginTop="5dp"
android:layout_marginLeft="5dp"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/category_name"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"/>
</LinearLayout>
</xxx.SquareLinearLayout>
而且我的佈局:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<GridView
android:id="@+id/categories"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:numColumns="2"
android:scrollbars="vertical"/>
</RelativeLayout>
啓動GridVi後新聞顯示項目6全尺寸項目和滾動條拇指。然後拇指消失。沒有任何滾動條,我不能滾動它。我嘗試了3列,並獲得了15個沒有滾動條的可見項目。 這僅發生在Android 4中。 Android 5允許滾動。
我做錯了什麼?