我用过
drawerlayout
在我的xml中。我能够在相对布局中正确对齐,但我对此抽屉布局苦苦挣扎。
无法使用我在相对布局中使用的大部分功能。
但我有点设法在我想要的地方对齐元素。但它给了我另一个问题。
•在Android Studio的 XML预览中,完全对齐,
•在模拟器中(编译时)我看不到元素 Textview和Button。
•当我安装在 my Mobile 中时,这些元素从底部略高于。
您可以在下面看到三张图片,
Q1。所以为什么我得到了这些不同类型的对齐方式。
Q2。我如何编码,以便 UI 在所有设备中看起来相同
Q3。我在 XML代码(发布于下方)中做了什么错误,以及在所有设备中获取相同UI的替代代码是什么。
XML代码:
<android.support.v4.widget.DrawerLayout
android:id="@+id/drawer_layout"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.design.widget.CoordinatorLayout
android:id="@+id/coordinator"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:layout_scrollFlags="scroll|enterAlways"/>
</android.support.design.widget.AppBarLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/dbListrv"
android:layout_width="match_parent"
android:layout_height="450dp"
android:layout_alignParentTop="true"
android:layout_alignParentStart="true"
android:layout_marginTop="55dp"
/>
<EditText
android:layout_width="300dp"
android:layout_height="62dp"
android:id="@+id/et"
android:layout_alignParentBottom="true"
android:layout_marginBottom="0dp"
android:layout_marginTop="505dp"
/>
<Button
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="62dp"
android:text="New Button"
android:id="@+id/addButton"
android:padding="0dp"
android:layout_marginLeft="300dp"
android:layout_marginTop="505dp"
android:layout_marginBottom="0dp" />
</android.support.design.widget.CoordinatorLayout>
<android.support.design.widget.NavigationView
android:id="@+id/navigation_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:headerLayout="@layout/drawer_header"
app:menu="@menu/drawer"/>
</android.support.v4.widget.DrawerLayout>
我还要求你说一些灵活安排元素的技巧。 提前致谢。 (:
答案 0 :(得分:1)
我认为您的问题是因为您使用的是RecyclerView固定高度。
它在某些屏幕上占用的空间比在其他屏幕上占用的空间更多,从而产生您所看到的效果。
尝试将RecyclerView放入RelativeLayout并将其高度设置为MATCH_PARENT。
还可以使用RelativeLayout将按钮和textview对齐到屏幕底部,这是我认为你想要实现的目标。
答案 1 :(得分:1)
我为我的问题找到了解决方案。对于元素使用固定高度可能在xml中看起来很完美。但它们在具有不同屏幕尺寸的不同手机之间会有所不同。
因此提供固定高度并不是一个好主意。
因此,使用 LinearLayout (如果需要,嵌套LinearLayout)并设置每个元素的权重。
如果要将元素对齐为列,请将方向设置为水平。
如果要将元素对齐为行,请将方向设置为垂直。
重量将决定元素在定义的布局中应占用多少空间。
这是我的代码,没有使用固定的高度,
<android.support.v4.widget.DrawerLayout
android:id="@+id/drawer_layout"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.design.widget.CoordinatorLayout
android:id="@+id/coordinator"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:layout_scrollFlags="scroll|enterAlways"/>
</android.support.design.widget.AppBarLayout>
</LinearLayout>
<LinearLayout
android:id="@+id/FirstRL"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/dbListrv"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:layout_weight="1" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal"
android:layout_weight="10">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/et"
android:layout_alignParentBottom="true"
android:layout_weight="2" />
<Button
style="?android:attr/buttonStyleSmall"
android:layout_width="match_parent"
android:layout_height="40dp"
android:text="New Button"
android:id="@+id/addButton"
android:layout_weight="5" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
</android.support.design.widget.CoordinatorLayout>
<android.support.design.widget.NavigationView
android:id="@+id/navigation_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:headerLayout="@layout/drawer_header"
app:menu="@menu/drawer"/>
</android.support.v4.widget.DrawerLayout>
最后,我找到了解决自己问题的方法。希望它也会帮助别人..