我有一个Scrollview,Scrollview内部是TextViews。
我想通过意图将所有那些textview数据传递给另一个Scrollview。
答案 0 :(得分:0)
如果您打算使用意图打开其他活动,则可以使用
intentName.putExtra();
。
答案 1 :(得分:0)
首先,你必须从xml的textview id中获取该数据(无论是否是scrollview.we集体称为xml文件)。 按照示例
1.activity.xml:
<RelativeLayout
android:id="@+id/one"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="30dp">
<TextView
android:id="@+id/txtname"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="textview1" />
</ScrollView>
</RelativeLayout>
2.在您的MainActivity.java
中public class MainActivity extends AppCompatActivity {
TextView txtname;
String name;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//to get the textview from xml
txtname = (TextView) findViewById(R.id.txtname);
name = txtname.getText().toString();
//to send this name u need to call intent
Intent intent_data = new Intent(this, ActivityTwo.class);
//by using pupExtra method we can send the data from one activity to another
intent_data.putExtra("Name", name);
startActivity(intent_data);
}
}