如何根据图像拟合LinearLayout?

时间:2017-04-17 19:26:32

标签: android xml layout

如何将LinearLayout适合图像? (或任何替代方案) 我需要保持图像的比例来写入本乐器的(通过)窗口并按下按钮

这是预览:

preview with wanted layouts in green and red

图像具有正确的比例,我想要一个LinearLayout来获取图像的重量和宽度(我将其绘制为图像上的绿色盒子),然后我将能够将我的其他项目放在图像(我画的红框)

以下是代码:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="myapp.fragments.myfragment">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <ImageView
        android:id="@+id/my_background"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/pca"
        android:scaleType="centerInside"/>

</LinearLayout>

0 个答案:

没有答案