我正在开发一款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>
答案 0 :(得分:1)
您可以在布局中的某处TextView
找到TextView
使用findViewById
,然后使用setText
TextView
传递您的姓名。