嗨,我是 Android 的新开发人员
我想创建全局变量以将它们放在我的布局中,如下所示:
在 Java 中:final dimen myglobalValue = screenSize.width;
final dimen myglobalValue2 = screenSize.height;
在布局中:
<TextView
android:layout_width="@dimen/myglobalValue"
android:layout_height="@dimen/myglobalValue2"
android:text="@string/app_name"
android:textSize="18dp"
android:textColor="#ffffffff"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true" />
但在不知道该怎么做。