Android新闻列表页面的布局代码
时间: 2024-05-10 19:19:39 浏览: 92
Android页面布局代码
4星 · 用户满意度95%
以下是一个简单的Android新闻列表页面的布局代码:
```
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:id="@+id/tv_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="18sp"
android:textStyle="bold"
android:padding="16dp"/>
<ImageView
android:id="@+id/iv_image"
android:layout_width="match_parent"
android:layout_height="200dp"
android:scaleType="centerCrop"/>
<TextView
android:id="@+id/tv_description"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="16dp"/>
<TextView
android:id="@+id/tv_date"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="16dp"/>
</LinearLayout>
```
这个布局文件使用了LinearLayout来排列新闻标题、图片、描述和日期。TextView和ImageView用来显示文字和图片,设置了一些属性来调整它们的外观和布局。你可以根据自己的需要修改这个布局文件。
阅读全文