Как сделать процентную высоту и ширину в Android? - PullRequest
1 голос
/ 21 октября 2011

Я пытаюсь установить для кнопки 60% высоты и 60% ширины физического устройства.

Поскольку размер экрана зависит от пользователя, использование провалов исключено.

Как мы можем сделать процентную высоту и ширину в Android? E.g.:

 <Button android:layout_width="60%" android:layout_height="60%"/>

Ответы [ 2 ]

2 голосов
/ 21 октября 2011

Вы можете использовать атрибут layout_weight.Если родительский макет установлен на 10 весов, то вы можете установить вес 6 в вашем Button.

. В теме переполнения стека есть немало вопросов:

Линейный макет и вес в Android

... или в официальном блоге Android:

http://android -developers.blogspot.com / 2009/02/android-layout-tricks-1.html

0 голосов
/ 07 ноября 2017

Теперь это возможно с Руководствами , расположенными в процентах

Layout Editor

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 
    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">

    <Button
        android:id="@+id/button"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:text="Button"
        app:layout_constraintBottom_toTopOf="@+id/horizontalGuideline"
        app:layout_constraintEnd_toStartOf="@+id/verticalGuideline"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <android.support.constraint.Guideline
        android:id="@+id/verticalGuideline"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        app:layout_constraintGuide_percent="0.6" />

    <android.support.constraint.Guideline
        android:id="@+id/horizontalGuideline"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        app:layout_constraintGuide_percent="0.6" />

</android.support.constraint.ConstraintLayout>
...