在listview中显示文件

时间:2015-01-22 13:58:03

标签: android arraylist save android-arrayadapter

你们可能已经知道了,但我并不擅长这一点。 当我点击新笔记时,我会去annteckningsblock.class,在那里我想点击保存按钮,它会保存它,并且在我的列表视图中可以保留。如何?

这是我的代码: anteckningsblock class,这是我可以编辑和编写笔记的地方。

package se.felix.anteckningsblock;

import android.content.ActivityNotFoundException;
import android.content.Context;
import android.content.Intent;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.inputmethod.InputMethodManager;
import android.widget.Button;
import android.view.View.OnClickListener;
import android.app.Activity;


public class anteckningsblock extends ActionBarActivity {



    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_anteckningsblock);

    Button button = (Button)findViewById(R.id.GoBack);
    button.setOnClickListener(new OnClickListener() {
        public void onClick(View v) {
            Intent i = new Intent(anteckningsblock.this, Notelist.class);
            startActivity(i);


        }
    });


    }

}

Notelist Class ,这是我列出笔记的地方:

package se.felix.anteckningsblock;

import android.content.ActivityNotFoundException;
import android.content.Context;
import android.content.Intent;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.inputmethod.InputMethodManager;
import android.widget.Button;
import android.view.View.OnClickListener;
import android.app.Activity;


public class anteckningsblock extends ActionBarActivity {



    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_anteckningsblock);

    Button button = (Button)findViewById(R.id.GoBack);
    button.setOnClickListener(new OnClickListener() {
        public void onClick(View v) {
            Intent i = new Intent(anteckningsblock.this, Notelist.class);
            startActivity(i);


        }
    });


    }

}

activity_anteckningsblock 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"
    tools:context=".anteckningsblock"
    android:background="@color/Blue">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/knappar"
        android:layout_marginRight="8dp"
        android:layout_marginLeft="8dp"
        android:layout_marginTop="8dp"
        android:layout_alignParentTop="true"
        android:layout_alignParentRight="true"
        android:layout_alignParentEnd="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true">


    <Button
        style="?android:attr/buttonStyleSmall"
        android:layout_width="100dp"
        android:layout_height="wrap_content"
        android:text="@string/Save"
        android:id="@+id/SaveButton"
        android:layout_alignParentLeft="true" />

    <Button
        android:layout_width="100dp"
        android:layout_height="wrap_content"
        android:text="@string/Delete"
        android:id="@+id/DeleteButton"
        android:layout_alignParentTop="true"
        android:layout_alignParentRight="true"
        android:layout_alignParentEnd="true" />

    <Button
        android:layout_width="100dp"
        android:layout_height="wrap_content"
        android:text="@string/Back"
        android:id="@+id/GoBack"
        android:layout_centerHorizontal="true"
        android:onClick="start"
        android:clickable="false" />

    </RelativeLayout>
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@+id/knappar"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:id="@+id/TextField"
        android:background="@color/Green"
        android:layout_marginLeft="8dp"
        android:layout_marginRight="8dp"
        android:layout_marginTop="8dp">
        <ScrollView
            android:layout_width="match_parent"
            android:layout_height="450dp"> <!--sätter höjden på scrollmenyn. 450dp passar fönstret på testtelefonen perfekt
-->

            <EditText
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/EditText"
            android:textColor="@color/Yellow"
            android:inputType="textMultiLine">

                <requestFocus/>
            </EditText>

        </ScrollView>

        </RelativeLayout>

</RelativeLayout>

notelist 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"
    tools:context=".Notelist"
    android:background="@color/Blue">

    <ListView
        android:id="@android:id/list"
        android:layout_height="wrap_content"
        android:layout_width="match_parent" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/New"
        android:id="@+id/New"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true" />

</RelativeLayout>

我真的很喜欢你们帮助我在这里!没有你我永远不会走得这么远! 有什么遗失?评论,我会为你发布:)

0 个答案:

没有答案