使图像大小与屏幕大小成一定百分比

时间:2017-06-03 04:37:22

标签: android android-layout

在约束布局中,如果我想让图像水平放置在屏幕顶部,那么我可以这样做

<android.support.constraint.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginTop="10dp">
        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/image"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintRight_toRightOf="parent"
            android:id="@+id/imageView" />
</android.support.constraint.ConstraintLayout>

如何使图像宽度和高度达到屏幕宽度和高度的25%?这可行吗?

谢谢

3 个答案:

答案 0 :(得分:1)

<强>更新

使用新的ConstrainLayout 1.1.0已经实现了更好的方法来实现这一目标!

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <ImageView
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:background="#ffff0000"

        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"

        app:layout_constraintWidth_percent=".25"
        app:layout_constraintWidth_default="percent"

        app:layout_constraintHeight_percent=".25"
        app:layout_constraintHeight_default="percent"
        />

</android.support.constraint.ConstraintLayout>

或者

您可以使用百分比放置指南,然后将ImageView约束到它们。 有一个更干净的方法可以做到这一点会很好,但我认为它仍然比嵌套的LinearLayout有更好的权重

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <ImageView
        android:id="@+id/imageView"
        app:layout_constraintLeft_toLeftOf="@id/guideline_left"
        app:layout_constraintRight_toRightOf="@id/guideline_right"
        app:layout_constraintTop_toTopOf="@id/guideline_top"
        app:layout_constraintBottom_toBottomOf="@id/guideline_bottom"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:background="#ffff0000"/>

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

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


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

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

</android.support.constraint.ConstraintLayout>

答案 1 :(得分:0)

您可以通过编程方式设置它: -

ImageView image_view = (ImageView) findViewById(R.id.image_view);
calulate(image_view);



private void calulate(View v) 
{
    int imgWidth = this.getResources().getDisplayMetrics().widthPixels;
    int imgHeight = this.getResources().getDisplayMetrics().heightPixels;
    v.getLayoutParams().height = (int) (0.25*imgHeight);
    v.getLayoutParams().width = (int) (0.25*imgWidth);
}

答案 2 :(得分:0)

对于每个视图,android提供了一个覆盖方法(onMeasure),其中有2个参数(int widthMeasureSpec, int heightMeasureSpec),您可以根据需要返回高度宽度。 示例:如果您想要height = width表示方形大小视图,则可以返回高度和宽度,如下所示:

@Overrideprotected void onMeasure(int widthMeasureSpec, int heightMeasureSpec)
{
    super.onMeasure(heightMeasureSpec, heightMeasureSpec);
}

您可以为此创建自定义视图: 例: 创建一个类名称CustomImageView使用ImageView扩展

public class CustomImageView extends ImageView
{

    @Override    
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec)
    {
        super.onMeasure(heightMeasureSpec, heightMeasureSpec);

        // you can set this as per percentage also. For example: 
        //"heightMeasureSpec * 50 /100"  ---- the height will be 50% of the 
        //view's width. 
    }

}

在您的布局中使用此代码:

<CustomImageView    
    android:id="@+id/imageView"    
    android:layout_width="match_parent"    
    android:layout_height="wrap_content"
    android:src="@drawable/ic_launcher"    
/>