如何從代碼中設置屬於RelativeLayout下的TextView的屬性。如何從代碼
這裏是我的佈局:
<RelativeLayout
android:id="@+id/team_left"
android:layout_width="wrap_content"
android:layout_height="50dip"
android:layout_alignParentLeft="true">
<ImageView
android:id="@+id/flag_left"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/img"/>
<TextView
android:id="@+id/country_left"
android:textColor="@color/txt_color"
android:textStyle="bold"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</RelativeLayout>
如何設置,如屬性 「機器人:layout_toRightOf =」 @ ID/flag_left」從代碼中的TextView
你如何訪問該佈局?它是您設置爲內容視圖的佈局還是使用充氣器充氣? – 2011-04-07 12:02:59
佈局設置在創建活動上。我在設置佈局作爲內容視圖 – 2011-04-07 12:12:41