您可以使用XML構(gòu)建布局,然后使用代碼填充動態(tài)數(shù)據(jù)。
使用ID創(chuàng)建XML中的用戶界面
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical"> <!-- NAME CONTAINER --> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/app_name" /> <TextView android:id="@+id/nameValue" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </LinearLayout> <!-- ADDRESS CONTAINER --> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical"> <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/app_name" /> <TextView android:id="@+id/addrValue" android:layout_width="fill_parent" android:layout_height="wrap_content" /> </LinearLayout> </LinearLayout>
這些TextViews的實際字符串將來自我們在/ res / values文件夾中的strings.xml文件。下面的代碼顯示了我們的strings.xml文件可能看起來像。
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="app_name">hgci.cn</string> <string name="hello_world">hgci.cn</string> <string name="action_settings">Settings</string> </resources>
在運行時參考資源中的控件
// ww w . j av a2 s. c o m package com.java2s.app; import android.app.Activity; import android.os.Bundle; import android.widget.TextView; public class MainActivity extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); TextView nameValue = (TextView)findViewById(R.id.nameValue); nameValue.setText("Main"); TextView addrValue = (TextView)findViewById(R.id.addrValue); addrValue.setText("Street"); } }
更多建議: