2

私はアンドロイドの自己学習者です、

Androidプログラムがテキストビューに何らかの結果を表示するとします。次の画面のタブホストの最初のタブにその答えを表示する方法を教えてもらえますか?これを実現するにはどうすればよいですか?

私の知識によると、私はグーグルで検索し、「共有設定」の概念がこの問題に役立つことを発見しました。私は正しかったですか?

そして、私はいくつかのサンプルを見つけましたが、それらは私を明確にしていません、誰かが私にスクリーン画像でいくつかの例を与えることができますか?

貴重なお時間をいただきありがとうございます!

4

3 に答える 3

1

これは、最初のタブに入力したものが何であれ、2番目のタブに表示される小さなサンプルです。

メインクラス

public class CheckkActivity extends TabActivity {
 /** Called when the activity is first created. */
  @Override      
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    Resources res = getResources();                 
    TabHost tabHost = getTabHost();  // The activity TabHost
    TabHost.TabSpec spec;  // Resusable TabSpec for each tab
    Intent intent;  // Reusable Intent for each tab


    intent = new Intent().setClass(this, NewActivity.class);


    spec = tabHost.newTabSpec("first").setIndicator("First")
                  .setContent(intent);
    tabHost.addTab(spec);


    intent = new Intent().setClass(this, SecondActivity.class);
    spec = tabHost.newTabSpec("second").setIndicator("Second")
                  .setContent(intent);
    tabHost.addTab(spec);



    tabHost.setCurrentTab(0);

}
}

NewActivity

     public class NewActivity extends Activity{
    EditText get;
    Button save;
     SharedPreferences sharedPreferences;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.next);
        get=(EditText)findViewById(R.id.next);
        save=(Button)findViewById(R.id.button1);


          save.setOnClickListener(new OnClickListener() {

            public void onClick(View v) {
                // TODO Auto-generated method stub
                if(get.getText().toString().equalsIgnoreCase("")){
                    Toast.makeText(getApplicationContext(), "enter something", Toast.LENGTH_SHORT).show();
                }else{
                sharedPreferences=PreferenceManager.getDefaultSharedPreferences(NewActivity.this);
                   Editor editor1 = sharedPreferences.edit();
                   editor1.remove("answer");
                   editor1.commit();
                 sharedPreferences=PreferenceManager.getDefaultSharedPreferences(NewActivity.this);
                  Editor editor = sharedPreferences.edit();
                  Log.i("set value",""+get.getText().toString());
                  editor.putString("answer",get.getText().toString());
                  editor.commit();}
            }
        });

    }

   }

SecondActivity

      public class SecondActivity extends Activity{
TextView set;
SharedPreferences sharedPreferences;
@Override
protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    setContentView(R.layout.second);
    set=(TextView)findViewById(R.id.second);

}

     @Override
     protected void onResume() {
// TODO Auto-generated method stub
sharedPreferences = PreferenceManager
        .getDefaultSharedPreferences(SecondActivity.this);
String answer= sharedPreferences.getString("answer", "");
Log.v("get value",""+answer);
if(answer.equalsIgnoreCase(null)){
    set.setText("nothing to display");
}else{
set.setText(answer);
}
super.onResume();
     }
   }
于 2012-06-15T07:17:58.437 に答える
0

次のように、最初のタブで共有設定に回答を保存する必要があります。

             SharedPreferences sharedPreferences;
            sharedPreferences=PreferenceManager.getDefaultSharedPreferences(YourActivityName.this);
            Editor editor = sharedPreferences.edit();
            editor.putString("your_tag",your value);
            editor.commit();

次に、次のアクティビティで値をフェッチします。

             SharedPreferences sharedPreferences;
             sharedPreferences = PreferenceManager
        .getDefaultSharedPreferences(NextActivity.this);
    String answer= sharedPreferences.getString("your_tag", "");
于 2012-06-15T06:25:02.877 に答える
0

main.xml

    <?xml version="1.0" encoding="utf-8"?>
     <TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:padding="5dp">
    <TabWidget
        android:id="@android:id/tabs"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" />
    <FrameLayout
        android:id="@android:id/tabcontent"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:padding="5dp" />
    </LinearLayout>
  </TabHost>

next.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" >

<EditText
    android:id="@+id/next"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_margin="10dp" />

<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal"
    android:text="save" />

</LinearLayout>

second.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/second"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Large Text"
    android:textAppearance="?android:attr/textAppearanceLarge" />

</LinearLayout>
于 2012-06-15T07:39:19.300 に答える