android schedule_list_item布局文件
时间: 2023-12-07 17:05:54 浏览: 103
android 布局文件
5星 · 资源好评率100%
以下是一个简单的schedule_list_item布局文件示例,用于在Android应用程序中显示日程表列表项:
```xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="16dp">
<TextView
android:id="@+id/schedule_title"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textSize="18sp"
android:textColor="@android:color/black"
android:textStyle="bold"/>
<TextView
android:id="@+id/schedule_time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="14sp"
android:textColor="@android:color/darker_gray"/>
</LinearLayout>
```
该布局文件包含一个LinearLayout,其中包含两个TextView控件,用于显示日程表列表项的标题和时间。
在LinearLayout中,使用android:orientation="horizontal"属性将控件水平排列,android:padding="16dp"属性设置控件的内边距为16dp。
在第一个TextView中,使用android:layout_weight="1"属性将其宽度设置为与LinearLayout中的所有其他控件相同,并使用android:textStyle="bold"属性设置其文本样式为粗体。
在第二个TextView中,使用android:textColor="@android:color/darker_gray"属性将其文本颜色设置为较暗的灰色。
您可以根据自己的需要调整布局文件中的各种属性。
阅读全文