服务器之家

服务器之家 > 正文

Android开发之机顶盒上gridview和ScrollView的使用详解

时间:2021-06-19 17:50     来源/作者:李培能

最近在机顶盒上做一个gridview,

Android开发之机顶盒上gridview和ScrollView的使用详解

其焦点需要在item的子控件上,但gridview的焦点默认在item上,通过
android:descendantfocusability="afterdescendants"

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<scrollview
android:id="@+id/scroll_content"
android:layout_width="1740.0px"
android:layout_height="600.0px"
android:layout_x="81.0px"
android:layout_y="258.0px" >
<com.hysmarthotel.view.mygridview
android:id="@+id/lightview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:descendantfocusability="afterdescendants"
android:horizontalspacing="58dp"
android:numcolumns="4"
android:scrollbars="none"
android:stretchmode="columnwidth"
android:verticalspacing="80dp" />
</scrollview>

可以让gridview的子控件获得焦点。但是加了这个属性之后,gridview就会变得无法滚动,后来我就给gridview加了一个scrollview,

但由于它们两个都有滚动条,所以我重写了一个gridview,让其滚动条消失。终于成功地让gridview可以一直让子控件获得焦点,并且可以顺利滚动。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.hysmarthotel.view;
import android.content.context;
import android.util.attributeset;
import android.widget.gridview;
public class mygridview extends gridview {
public mygridview(context context, attributeset attrs) {
super(context, attrs);
}
public mygridview(context context) {
super(context);
}
public mygridview(context context, attributeset attrs, int defstyle) {
super(context, attrs, defstyle);
}
@override
public void onmeasure(int widthmeasurespec, int heightmeasurespec) {
int expandspec = measurespec.makemeasurespec(
integer.max_value >> 2, measurespec.at_most);
super.onmeasure(widthmeasurespec, expandspec);
}
}

ps:我的布局是绝对布局,以及关于item的布局和adapter的代码没什么特别的。checkbox焦点等级很高。

以上内容给大家介绍了android开发之机顶盒上gridview和scrollview的使用详解,希望对大家有所帮助!

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
2021德云社封箱演出完整版 2021年德云社封箱演出在线看
2021德云社封箱演出完整版 2021年德云社封箱演出在线看 2021-03-15
返回顶部