使用XML在Constraint Layout中为TextView添加边距

时间:2017-10-27 16:05:06

标签: android android-layout widget

我想在TextView Widget中添加左右边距,但它似乎无法正常工作。

这是我的活动XML:

<?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"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.sayhi.DisplayOutput"
    tools:layout_editor_absoluteY="81dp">

    <TextView
        android:id="@+id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="20dp"
        android:layout_marginRight="20dp"
        android:layout_marginTop="140dp"
        android:text="@string/output"
        android:textSize="30sp"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>

这就是它的样子:

enter image description here

我正在使用GUI布局编辑器。我尝试添加填充到窗口小部件和填充按预期工作。我想我缺少一些关于布局的基本知识,但我不确定是什么。

我使用的是Android Studio 2.3,ConstraintLayout 1.0.2,AppCompat v7:26,Build Tools Version 26.0.2。

2 个答案:

答案 0 :(得分:4)

更改

  copyAndRename: function (url, newBucketAndFile, key, contentType, accessKey, region, policy, signature) {
        var fd = new FormData();
        var date = moment().utc().format("YYYYMMDD");
        fd.append("key", key);   // Not sure if needed?
        fd.append("Content-Type", contentType);
        fd.append("x-amz-copy-source", newBucketAndFile);
        fd.append("acl", "private");
        fd.append("policy", policy);
        fd.append("x-amz-meta-tag", "");
        fd.append("x-amz-meta-uuid", "11111111111111");
        fd.append("x-amz-server-side-encryption", "AES256");
        fd.append("X-Amz-Credential", accessKey + "/" + date + "/" + region + "/s3/aws4_request");
        fd.append("X-Amz-Date", date + "T000000Z");
        fd.append("X-Amz-Algorithm", "AWS4-HMAC-SHA256");
        fd.append("X-Amz-Signature", signature);
        var success = false;
        $.ajax({
            url: url,   // Is this the bucket and file path?
            method: "PUT",
            data: fd,
            processData: false,
            contentType: false,
            async: false
        }).done(function (result) {
            success = true;
        }).fail(function (error) {
            console.log("error", error);
            success = false;
        });
        return success;
    }

android:layout_width="wrap_content"

作为android:layout_width="match_parent" // or android:layout_width="0dp" 的宽度。

答案 1 :(得分:1)

TextView的宽度设置为0dp

<TextView
    android:id="@+id/textView"
    android:layout_width="0dp"
    ... />