我想在我的 XML 布局中使用一些 java 类常量值。那可能吗?
java类
public class ConstantKey {
public static final String COUNTRY_CODE = "+00";
public static final STRING COUNTRY_NAME = "USA";
}
xml布局
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ConstantKey.COUNTRY_NAME"/>