android 学习随笔八(网络)

【android 学习随笔八(网络)】厌伴老儒烹瓠叶,强随举子踏槐花。这篇文章主要讲述android 学习随笔八(网络)相关的知识,希望能为你提供帮助。
1、简单新闻客户端

< 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" tools:context=".MainActivity" > < ListView android:id="@+id/lv" android:layout_width="wrap_content" android:layout_height="wrap_content" /> < /RelativeLayout>

< ?xml version="1.0" encoding="utf-8"?> < RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content" > < com.loopj.android.image.SmartImageView android:id="@+id/siv" android:layout_width="90dp" android:layout_height="70dp" android:src="https://www.songbingjia.com/android/@drawable/ic_launcher" android:layout_centerVertical="true" /> < TextView android:id="@+id/tv_title" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="标题阿克江还得靠就阿訇多空间阿红的卡口" android:textSize="18sp" android:layout_toRightOf="@id/siv" android:singleLine="true" /> < TextView android:id="@+id/tv_detail" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="详细阿红的卡上的空间阿红的科技爱好是三路口见大口径的空间啊顺丰的会计师费空间是否会计师" android:textColor="@android:color/darker_gray" android:textSize="15sp" android:layout_below="@id/tv_title" android:layout_toRightOf="@id/siv" android:lines="2" /> < TextView android:id="@+id/tv_comment" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="12323评论" android:textColor="#ff0000" android:layout_alignParentRight="true" android:layout_below="@id/tv_detail" /> < /RelativeLayout>

 

    推荐阅读