真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Android中ScrollView與ListView沖突問題的解決辦法

Android 中ScrollView與ListView沖突問題的解決辦法

創(chuàng)新互聯(lián)建站技術(shù)團(tuán)隊(duì)十年來致力于為客戶提供做網(wǎng)站、成都做網(wǎng)站、品牌網(wǎng)站設(shè)計(jì)、成都營(yíng)銷網(wǎng)站建設(shè)、搜索引擎SEO優(yōu)化等服務(wù)。經(jīng)過多年發(fā)展,公司擁有經(jīng)驗(yàn)豐富的技術(shù)團(tuán)隊(duì),先后服務(wù)、推廣了上1000家網(wǎng)站,包括各類中小企業(yè)、企事單位、高校等機(jī)構(gòu)單位。

自定義MyListView

public class MyListView extends ListView 
{ 
  public MyListView(Context context) 
  { 
    super(context); 
    // TODO Auto-generated constructor stub 
  } 
 
  public MyListView(Context context, AttributeSet attrs) 
  { 
    super(context, attrs); 
    // TODO Auto-generated constructor stub 
  } 
 
  public MyListView(Context context, AttributeSet attrs, int defStyle) 
  { 
    super(context, attrs, defStyle); 
    // TODO Auto-generated constructor stub 
  } 
 
  protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) 
  { 
    int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST); 
    super.onMeasure(widthMeasureSpec, expandSpec); 
  } 
} 

在xml布局中直接用MyListView替換ListView即可使用

如有疑問請(qǐng)留言或者到本站社區(qū)交流討論,感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!


標(biāo)題名稱:Android中ScrollView與ListView沖突問題的解決辦法
瀏覽路徑:http://weahome.cn/article/ggcoci.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部