带有ImageButton的垂直LinearLayout:不同屏幕的问题

时间:2018-02-13 14:15:32

标签: android android-layout

我在一个水平父线性布局中有2个垂直线性布局,如下所示:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:textAllCaps="false"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    android:orientation="vertical"


<android.support.design.widget.AppBarLayout ...
<android.support.v7.widget.Toolbar... />        
</android.support.design.widget.AppBarLayout>


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal">


    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
            xmlns:app="http://schemas.android.com/apk/res-auto"
            xmlns:tools="http://schemas.android.com/tools"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="0.1"
            android:orientation="vertical"
            android:id="@+id/imagebtn_layout">
    </LinearLayout>

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
            xmlns:app="http://schemas.android.com/apk/res-auto"
            xmlns:tools="http://schemas.android.com/tools"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="0.9"
            android:layout_marginRight="1dp"
            android:orientation="vertical"
            android:id="@+id/button_layout">
    </LinearLayout>

 </LinearLayout>

</LinearLayout>

现在我以编程方式将2个按钮添加到他们的视图中: 一个进入imagebtn_layout,另一个进入button_layout,参数为:(LinearLayout.LayoutParams.MATCH_PARENT,LinearLayout.LayoutParams.WRAP_CONTENT)。按钮的文本设置为20.6f。图像按钮的图片有44x44像素。

结果在我的Pixel 2(1920x1080)上看起来很好,但很糟糕,例如在2560x1440: enter image description here

我不确定是什么错。结果应该是ImageButton和普通按钮在同一行的所有屏幕上。

编辑:使用gmetax的解决方案并在父视图中将android:layout_height设置为&#34; wrap_content&#34;并调整文本按钮的字体大小。

1 个答案:

答案 0 :(得分:1)

你必须指定你知道的图像的宽度,然后让另一个填充空白区域。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="16dp"
        android:layout_height="match_parent"
        android:layout_weight="0"
        android:orientation="vertical"
        android:id="@+id/imagebtn_layout">
</LinearLayout>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:layout_marginRight="1dp"
        android:orientation="vertical"
        android:id="@+id/button_layout">
</LinearLayout>