在activity_shop_detail.xml布局文件中,放置1个TextView控件用于显示菜单文本信息,1个View控件用于显示一条灰色分割线,1个ListView控件用于显示菜单列表
时间: 2023-12-03 10:44:03 浏览: 74
以下是activity_shop_detail.xml布局文件的示例代码,包含上述所需的控件:
```xml
<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/text_menu_info"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="菜单"/>
<!-- 灰色分割线 -->
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/colorGray"/>
<!-- 菜单列表 -->
<ListView
android:id="@+id/list_menu"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
```
阅读全文