作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 mainactivity 布局和另一个带有 textview 的布局。我想从我的 mainactivity 文件中为 textview 设置值并将其显示在 mainlayout 文件中。我该怎么做。我正在使用布局充气器并成功获取了 Textview 的引用 ID。
主要 Activity :
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
LayoutInflater inflater = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View vi = inflater.inflate(R.layout.layout2, null); //log.xml is your file.
TextView tv = (TextView)vi.findViewById(R.id.text1);
System.out.println("Textview= "+tv);
tv.setText("hELLLLOO");
}
}
Main_Layout.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
</RelativeLayout>
布局2.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
<TextView
android:id="@+id/text1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world"
android:layout_gravity="center"
android:textColor="#000000"/>
</LinearLayout>
最佳答案
您可以使用 Intent 并将值传递给下一个 Activity 。您只膨胀布局,但不会将其添加到 Activity。
您必须获取对 RelativeLayout
的引用并向其添加膨胀 View
有一个 RelativeLAyout 的 id
<RelativeLayout android:id="@+id/relativelayout
然后
RelativeLayout rl = (RelativeLayout) findViewById(R.id.relativeLayout);
View vi = inflater.inflate(R.layout.layout2, null); //log.xml is your file.
TextView tv = (TextView)vi.findViewById(R.id.text1);
tv.setText("hELLLLOO");
rl.addView(vi);
您也可以使用
http://www.curious-creature.org/2009/02/25/android-layout-trick-2-include-to-reuse/
或者
在 MainActivity
中
Intent intent = new Intent(MainActivity.this,SecondActivity.class);
intent.putExtra("key","hello");
startActivity(intent);
然后在SecondActivity
// Inflate Layout 2 and set text to textview.
String value = getIntent().getStringExtra("key");
关于android - 如何从另一个布局显示 TextView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22244155/
我是一名优秀的程序员,十分优秀!