热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

利用ListView实现新闻客户端的新闻内容图文混排

如图:布局文件:<LinearLayoutxmlns:android"<ahref"http:schemas.android.comapkresand
如图:
布局文件:
  1. http://schemas.android.com/apk/res/android"
  2.     xmlns:tools="http://schemas.android.com/tools"
  3.     android:layout_
  4.     android:layout_
  5.     android:orientation="vertical"
  6.     tools:cOntext=".MainActivity" >
  7.      android:layout_
  8.      android:layout_
  9.      android:id="@+id/img_txt_list"
  10.      android:focusable="true"
  11.      android:scrollingCache="true"
  12.      android:divider="#00000000"
  13.      android:scrollbars="none"
  14.      />

  1. @Override
  2.         public boolean isEnabled(int position) { //屏蔽listView的每个item的高亮效果
  3.                 return false;
  4.         }
读取assets下的json文件,用于模拟网络请求:
  1. public List getAssetsData(){
  2.                 AssetManager am = this.getAssets();
  3.                 try {
  4.                         InputStream is = am.open(path);
  5.                         ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
  6.                         byte[] bt = new byte[1024];
  7.                         int len = 0;
  8.                         while((len = is.read(bt)) != -1){
  9.                                 outputStream.write(bt, 0, len);
  10.                         }
  11.                         
  12.                         outputStream.close();
  13.                         is.close();
  14.                         String json = outputStream.toString();
  15.                         list = AnalysisJSON.getProvinceCities(json);
  16.                 } catch (IOException e) {
  17.                         e.printStackTrace();
  18.                 }
  19.                 return list;
  20.         }

新闻类的图文混排目前想到的有3种类型的解决办法:
本文是一种,另外两种接下来会逐一介绍,另附demo供网友测试!

img.jpg (72.79 KB, 下载次数: 58)

img.jpg

推荐阅读
author-avatar
plumscape_191
这个家伙很懒,什么也没留下!
Tags | 热门标签
RankList | 热门文章
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有