如何使用Java完全更改<include>内部的Layout属性?

时间:2019-01-27 16:23:22

标签: android android-constraintlayout

我有一个具有多个主题的计算器应用程序。我设计了多个布局文件,如果用户在设置中更改了主题,则尝试更改布局槽标记。

这是当我在xml中手动更改布局时数字键盘的显示方式。

enter image description here 矩形.xml

<androidx.constraintlayout.widget.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">
    <!-- all rectangular button codes -->
</androidx.constraintlayout.widget.ConstraintLayout>

enter image description here Circular.xml

<androidx.constraintlayout.widget.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">
    <!-- all rectangular button codes -->
</androidx.constraintlayout.widget.ConstraintLayout>

这是activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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=".MainActivity">

    <TextView
        android:id="@+id/tvSource"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:gravity="center_vertical|start"
        android:hint="Enter a number"
        android:paddingStart="16dp"
        android:paddingEnd="16dp"
        android:textSize="16sp"
        app:layout_constraintBottom_toTopOf="@+id/tvTarget"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.5"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_chainStyle="spread" />

    <TextView
        android:id="@+id/tvTarget"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:gravity="center_vertical|start"
        android:hint="Do some calculations to see the answer"
        android:paddingStart="16dp"
        android:paddingEnd="16dp"
        android:textSize="16sp"
        app:layout_constraintBottom_toTopOf="@+id/include"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.5"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/tvSource" />

    <androidx.constraintlayout.widget.Guideline
        android:id="@+id/horizontalGuideline"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        app:layout_constraintGuide_percent="0.25" />

    <include
        android:id="@+id/include"
        layout="@layout/basic_numpad_rectangular_flat_multi_color"
        android:layout_width="0dp"
        android:layout_height="0dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="@+id/horizontalGuideline" />

    <Button
        android:id="@+id/bSetting"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="8dp"
        android:layout_marginEnd="8dp"
        android:text="Setting"
        app:layout_constraintEnd_toEndOf="@+id/tvSource"
        app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

这是我尝试将include标签的布局属性从矩形更改为圆形的方法:

View circularComplete =  LayoutInflater.from(this).inflate(R.layout.basic_numpad_circular_complete, null);
ViewGroup viewGroup = findViewById(R.id.include);
viewGroup.removeAllViews();
viewGroup.addView(circularComplete);

它会更改布局,但不会在每个按钮附近保留约束或空格。

enter image description here

如何以编程方式更改布局属性,以保留所有约束和空格?

1 个答案:

答案 0 :(得分:2)

更改此行:

View circularComplete =  LayoutInflater.from(this).inflate(R.layout.basic_numpad_circular_complete, null);

对此:

View circularComplete =  LayoutInflater.from(this).inflate(R.layout.basic_numpad_circular_complete, viewGroup, false);

inflate()调用的第二个参数是父视图,用于解释膨胀视图的LayoutParams。由于您传递的是null,因此会忽略展开视图的LayoutParams(最重要的是,layout_widthlayout_height),而是使用默认值。对于宽度/高度,默认值为WRAP_CONTENT

通过传递viewGroup作为父级(第三个参数是false),将尊重您的展开视图的LayoutParams,并将正确设置其大小。

您也可以完全不传递第三个参数,并避免进行addView()调用:

ViewGroup viewGroup = findViewById(R.id.include);
viewGroup.removeAllViews();
LayoutInflater.from(this).inflate(R.layout.basic_numpad_circular_complete, viewGroup);

vs

ViewGroup viewGroup = findViewById(R.id.include);
viewGroup.removeAllViews();
View circularComplete =  LayoutInflater.from(this).inflate(R.layout.basic_numpad_circular_complete, viewGroup, false);
viewGroup.addView(circularComplete);