本文实例讲述了AndroID布局之linearLayout自定义高亮背景的方法。分享给大家供大家参考,具体如下:
首先创建linearlayout_background.xml文件
res/drawable/linearlayout_background.xml
<?xml version="1.0" enCoding="utf-8"?><selectorxmlns:androID="http://schemas.androID.com/apk/res/androID"> <itemandroID:state_pressed="true" androID:drawable="@drawable/button_pressed"/> <itemandroID:state_focused="true" androID:drawable="@drawable/button_pressed"/> <itemandroID:drawable="@drawable/button_normal"/></selector>
其次在对应的xml布局文件中
<linearLayout androID:layout_height="wrap_content" androID:layout_wIDth="wrap_content" androID:clickable="true"<!--这条是必须的,否则没有高亮显示效果,这有别于自动的button,textvIEw等其他控件--> androID:background="@drawable/linearlayout_background"> <button ....../><TextVIEw ...../></linearLayout>
更多关于AndroID布局相关内容感兴趣的读者可查看本站专题:《Android布局layout技巧总结》
希望本文所述对大家AndroID程序设计有所帮助。
总结以上是内存溢出为你收集整理的Android布局之LinearLayout自定义高亮背景的方法全部内容,希望文章能够帮你解决Android布局之LinearLayout自定义高亮背景的方法所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)