Android 无法更改 TextView 内容

代码publicViewgetView(Stringpo,Stringtext){LayoutInflaterinflater=getLayoutInflater();i... 代码 public View getView(String po, String text) {
LayoutInflater inflater = getLayoutInflater();
if (po.equals("left")) {
RelativeLayout left = (RelativeLayout) inflater.inflate(
R.layout.left, null).findViewById(R.id.leftre);
TextView textleft = (TextView) inflater
.inflate(R.layout.left, null).findViewById(R.id.lefttext);
textleft.setText(text);
return left;
}
}
布局:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/leftre"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/lefttext"
android:layout_width="280dp"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:paddingLeft="10dp"
android:text="我是左侧的文本框我是左侧的文本框我是左侧的文本框"
android:textSize="18sp" />
</RelativeLayout>
只能显示默认文本,不能改,是什么问题,怎么改
展开
 我来答
风飞尘落
2015-10-19 · 心理咨询师,中国科学院心理研究所
风飞尘落
采纳数:26463 获赞数:163422

向TA提问 私信TA
展开全部
设置Android中TextView显示的值有两种方式:

在xml中设置 android:text="TextView示例"。

在java代码中 TextView textView = (TextView) findViewById(R.id.textView);

textView.setText("显示TextView");这样就可以动态设置文本了。
poikl369
2014-06-10 · TA获得超过223个赞
知道小有建树答主
回答量:257
采纳率:33%
帮助的人:167万
展开全部
View view = inflater.inflate(R.layout.left, null);
TextView textleft = (TextView) view.findViewById(R.id.lefttext);
textleft.setText(text);
return view; 改成我的 试试
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式