我如何使用记事本进行textview?

时间:2014-03-29 05:09:12

标签: android textview notepad

我非常大,所以请光临我

我的项目中有两项活动

首先是text1.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=".Text1" >

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="36dp"
        android:text="Button1" />

    <Button
        android:id="@+id/button3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/button2"
        android:layout_below="@+id/button2"
        android:layout_marginTop="82dp"
        android:text="Button3" />

    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/button1"
        android:layout_below="@+id/button1"
        android:layout_marginTop="70dp"
        android:text="Button2" />

</RelativeLayout>

,第二个是text2.xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
        android:layout_marginRight="20dp"
        android:layout_marginTop="28dp"
        android:text="TextView" />

</RelativeLayout>

我想在我的项目中放置3个记事本当用户按下text1.xml中的第一个按钮时,在text2.xml中的textview中显示第一个记事本,当用户按下text1.xml中的第二个按钮时,在text2.xml中的textview中显示第二个记事本第3个记事本也像第1和第2个..... 如何从记事本添加文本到textview ,,,,什么是代码? 我应该在我的项目中添加笔记本?在资产???

1 个答案:

答案 0 :(得分:0)

您可以使用framelayout / relativelayout将所有记事本放在彼此之上,并使用按钮切换特定布局的可见性。