Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有多个带有文本的标签。我有另一个选项卡,负责保存 GUI 元素以更改默认文本大小的值。我已经在 xml 文件中设置了默认值。我该如何去做,创建一个所有活动都可以访问的变量?
问题有点模糊,但无论如何这是我的答案
<resources> <integer-array name="UserBases"> <item>2</item> <item>8</item> <item>10</item> <item>16</item> </integer-array> </resources> Resources r = getResources(); int[] bases = r.getIntArray(R.array.UserBases)
使用bases数组来确定您的尺寸
bases
这是与其他片段通信的方法