繁体   English   中英

如何同时更改多个XML属性

[英]How to change multiple XML Attributes at the same time

我想知道如何在android studio中为多个TextViews更改相同的XML属性(例如android:textSize19sp )。 在设置全局样式时看到了这个问题 ,但是我不想更改所有TextViews ,只是大多数都可以...

有什么办法可以做到吗? 谢谢!

如果您希望仅在某些TextView(不是全部)内以更自动化的方式更改文本大小,则应停止对内容进行硬编码并以编程方式进行。 您提供的有关项目的信息很少,但是例如,如果您有一个包含5个TextViews的活动,则通过ID设置仅通过其中一些设置单个文本大小的最佳方法。 您需要为每个TextView设置不同的ID(例如t0,t1,t2,t3,t4)。 这是您的TextViews的外观:

<TextView
    android:id="@+id/t0"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentStart="true"
    android:layout_marginBottom="297dp"
    android:layout_marginStart="139dp"
    android:text="wqertyu" />

<TextView
    android:id="@+id/t1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_marginEnd="-115dp"
    android:layout_marginTop="304dp"
    android:text="2134253647" />

<TextView
    android:id="@+id/t2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentStart="true"
    android:layout_alignParentTop="true"
    android:layout_marginStart="115dp"
    android:layout_marginTop="95dp"
    android:text="gsdse5467y" />

<TextView
    android:id="@+id/t3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginBottom="-242dp"
    android:layout_marginEnd="-139dp"
    android:text="AAAAAAAAAAA" />

<TextView
    android:id="@+id/t4"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentEnd="true"
    android:layout_alignParentTop="true"
    android:layout_marginEnd="101dp"
    android:layout_marginTop="242dp"
    android:text="32453645786" />

如果只希望t2,t3和t4具有相同的文本大小,则可以将其放入Java文件中,如下所示:

public class activity_test extends AppCompatActivity {

TextView t0,t1,t2,t3,t4;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_test);

    t2=findViewById(R.id.t2);
    t2.setTextSize(19);
    t3=findViewById(R.id.t3);
    t3.setTextSize(19);
    t4=findViewById(R.id.t4);
    t4.setTextSize(19);

}

}

基本上,您可以像在XML文件中一样执行相同的操作。 希望这会有所帮助。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM