Android:模仿QQ简单实现联系人界面的布局文件代码
时间: 2024-03-10 14:47:56 浏览: 95
模仿QQ界面的一段简单源代码
好的,以下是一个简单的联系人界面的布局文件代码:
```xml
<?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"
android:padding="16dp">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Contacts"
android:textSize="24sp"
android:textStyle="bold" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/black" />
<ListView
android:id="@+id/contact_list"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:divider="@color/black"
android:dividerHeight="1dp" />
</LinearLayout>
```
在这个布局文件中,我们使用了一个 `LinearLayout` 作为根布局,并设置其 `orientation` 为 `vertical`,以便于垂直排列子控件。
接下来,我们添加了一个 `TextView` 作为标题,并设置其样式,用于显示联系人列表的标题。
然后,我们添加了一个 `View` 作为分割线,用于分隔标题和联系人列表。
最后,我们使用了一个 `ListView` 作为联系人列表,并设置其 `divider` 和 `dividerHeight` 属性,以便于在联系人之间添加分隔线。
注意,这个布局文件只是一个简单的示例,你可以根据自己的需求进行适当修改。
阅读全文