嗯,我的问题很简单。
我正在开始Android编程,我正在编写一个简单的日历应用程序。
我的主要布局是这样的(在RelativeLayout之上还有更多,但我认为这并不重要):
<RelativeLayout
android:id
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/header" >
<GridView
android:id="@+id/month_days"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:numColumns="7"
android:stretchMode="columnWidth"
android:columnWidth="60dp"
android:horizontalSpacing="1dp"
android:verticalSpacing="1dp" >
</GridView>
</RelativeLayout>
我希望GridView使用布局中的每个像素,高度和宽度。我可以调整de columnWidth属性来获得它,但我不知道如何用高度来做这个。
我正在考虑获取RelativeLayout维度(特别是高度),并将其除以6,这是我想要的行数...但我不确定这是否正确无论如何做到这一点。< / p>
提前致谢!
修改
我没说的东西:我有一个自定义适配器来填充GridView及其属性。这是代码。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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:background="@color/actual_month_day" >
<TextView
android:id="@+id/day_2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center">
</TextView>
</RelativeLayout>
例如,如果我更改android:layout_height="65dp"
,它会使单元格更大,这与我想要的类似,但它不会覆盖整个屏幕。如果我写一个更大的值,我需要滚动查看整个网格。
问题在于价值。我希望“65dp”是动态的,并根据屏幕中的可用空间而改变。
如果有帮助,这是我的适配器中的getView()
。
@Override
public View getView(int position, View convertView, ViewGroup parent) {
LayoutInflater inflater = (LayoutInflater) c.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View v;
TextView actualDay;
if (convertView == null) {
v = new View(c);
v = inflater.inflate(R.layout.calendar_day_2, parent, false);
actualDay = (TextView) v.findViewById(R.id.day_2);
actualDay.setText(days[position]);
if(!isActualMonth(position)) v.setBackgroundColor(c.getResources().getColor(R.color.not_actual_month_day));
} else {
v = (View) convertView;
}
return v;
}
我认为我必须在getView()
代码中计算布局的剩余空间,但我不知道如何。
我尝试添加actualDay.setHeight(parent.getHeight()/6);
,但这对我没什么帮助。单元格的高度没问题,但它向上滚动然后一切都消失了。之后,我设置android:scrollbars="none"
,但仍然没有。
我不知道这里有什么问题。也许逻辑很好,但滚动条的属性不是我需要的。对不起,如果它有点乱,但我想告诉你我尝试过的事情。
再次感谢你。
答案 0 :(得分:0)
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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/gridView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:numColumns="3" >
</GridView>
</LinearLayout>
答案 1 :(得分:0)
我建议你使用你的代码(如果身高看起来不错)
actualDay.setHeight(parent.getHeight()/ 6);
并禁用gridview的滚动。以下链接的代码显示了如何禁用滚动How to disable GridView scrolling in Android?。