如何动态显示布局中的名称?

时间:2015-01-25 11:59:57

标签: android xml android-layout

我正在开发一款Android应用,需要有朋友列表。我正在与服务器通信,服务器返回一个“名称”,如何在我的布局中显示此名称。

我的xml代码:            

 <LinearLayout 
    android:gravity="top" 
    android:layout_width="match_parent"
    android:layout_height="0dip"
    android:layout_weight="1"
    android:orientation="horizontal" > 
 <TextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="My Friend List" />
 </LinearLayout>

 <View
    android:layout_width="fill_parent"
    android:layout_height="1dp"
    android:background="@android:color/darker_gray"/>

 <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="0dip"
    android:layout_weight="1"
    android:gravity="top"
    android:orientation="horizontal" >

 <ImageButton
     android:id="@+id/imageButton1"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:src="@drawable/add_more_friends" />

</LinearLayout>

</LinearLayout>

1 个答案:

答案 0 :(得分:1)

您可以在布局中的某处TextView找到TextView使用findViewById,然后使用setText TextView传递您的姓名。