我有以下屏幕布局我试图为我的Android应用程序放在一起。
(原谅可怜的油漆工作:))
当用户点击左侧导航栏时,他们会在右侧显示该页面。
我想知道,我是否需要使用片段才能做到这一点? 我似乎无法获得正确的布局 - 无论是线性/相对/网格看起来如此。 如果有人有类似的布局XML,那对我来说启动这个UI将是一个很好的帮助。
THX
答案 0 :(得分:3)
我的布局就像这样
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="70.0dp"
android:layout_height="match_parent">
<!-- Control the width as you like -->
<!-- Add your A ,B, c Layouts here -->
</LinearLayout>
<ListView
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>