2016-08-18 58 views
1

我有Constants我的android項目中的java類,我想創建一個layout.xml。訪問android layout.xml中的靜態類字段

在xml文件中,我想從我的Constants類訪問public static final字段。

我該怎麼做?

layout.xml

<RadioButton 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text=Constants.HelloMessage/> 

Constants.java

public class Constants { 
    public static final String HelloMessage = "Hello Dear Users"; 
} 
+2

第一:你的values-folder中有一個'strings.xml'。這正是你想要的。第二:你不能從XML訪問代碼變量。您必須在活動初始​​化時手動設置它們,最好在'onCreate'-方法中。 – Bobby

+1

@ManuToMatic你是否建議我將所有常量從Constants.java類移動到strings.xml? – Oleg

+1

@Oleg ...或以編程方式將其分配給活動。 – FrozenFire

回答

3

爲Android管理字符串資源的正確方法是在res/values文件夾中使用string.xml file

但是,如果需要,還可以以編程方式設置UI小部件的文本。這通常用於動態文本,但沒有什麼可阻止您繼續在Constants類中使用靜態String

ActivityFragment,其中包含,例如,您的RadioButton上面的佈局膨脹,你需要得到它的引用,然後設置文本。爲了讓您首先需要給RadioButton的ID在XML參考:

<RadioButton 
    android:id="@+id/radio_button" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" /> 

,然後使用常量字符串編程設置文本:

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

    RadioButton radioButton = (RadioButton) findViewById(R.id.radio_button); 
    radioButton.setText(Constants.HelloMessage); 
} 

了一份關於風格,你的字符串變量應該在camel case,所以應該是helloMessage

2

更改XML以下

<RadioButton 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="" 
     android:id="@+id/radBtnId" 
/> 

在您的Java類,

RadioButton radBtn=(RadioButton)findViewById(R.id.radBtnId); 
radBtn.setText(Constants.HelloMessage); 

否則你可以提到在strings.xml中的字符串如直接在XML文件中

<string name="tag">Name</string> 
1

使用strings.xml指用於這一目的。你的做法是錯誤的。

轉到res文件夾,然後轉到values> strings.xml。打開它,把你的字符串有喜歡

<resources> 
    <string name="hello_message">Hello Dear Users</string> 
<resources> 

然後在你的佈局

<RadioButton 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:[email protected]/hello_message/> 

希望這會有所幫助。

+0

如果我有ints或float常量,它們是否也應放在strings.xml中? 聽起來strings.xml中只定義字符串有點不對 – Oleg

+0

。和'''的android:text'''只接受字符串不是int或漂浮 –

+0

但每一個數字可以表示爲字符串@ZeeshanShabbir。例如,您可以定義一個值爲「11」的字符串。 – Bobby