如何以表格尺寸的百分比来更改tablerow子项的高度?

时间:2019-02-10 17:34:44

标签: android

如何将ImageView的高度更改为屏幕高度的25%? 这是.xml:

<?xml version="1.0" encoding="utf-8"?>
<TableLayout 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">

    <TableRow
        android:id="@+id/row1"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <ImageView
            android:id="@+id/imageView"
            android:layout_width="match_parent"
            android:layout_height="match_parent"/>

    </TableRow>

我尝试使用android:layout_weight,但没有帮助。

0 个答案:

没有答案