我有一个要显示的位图,但是它并没有占据所有位置。我尝试了不同类型的布局(线性,相对,绝对,约束等),但是它们都不起作用。我还尝试将宽度和高度设置为“ match_parent”。看起来像this(右图应占据与左图一样大的空间)。 这是我的XML文件:
<?xml version="1.0" encoding="utf-8"?>
<GridLayout 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"
tools:context=".MainActivity">
<io.fotoapparat.view.CameraView
android:id="@+id/cameraView"
android:layout_width="193dp"
android:layout_height="256dp"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true" />
<android.support.v7.widget.AppCompatImageView
android:id="@+id/imageView"
android:layout_width="193dp"
android:layout_height="256dp"
android:layout_alignParentStart="false"
android:layout_alignParentTop="false"
android:layout_column="1"
android:layout_row="0"
android:adjustViewBounds="false"
android:rotation="90" />
</GridLayout>
答案 0 :(得分:0)
这就是我解决问题的方式,我只需要删除android:rotate="90"
并在程序本身中旋转位图即可。
答案 1 :(得分:0)
您为什么要提供修复程序height
和width
?
您可以将LinearLayout
和2个视图一起使用,分别授予android:layout_width=0dp
和android:layout_weight=1
肯定会工作。