我有三个按钮的代码。我想将onClickListener分配给每个人。因此,当单击每个相应的按钮时,我得到一个值,我可以保存并在其他活动中使用。
最终我将使用此值,与通过另一个活动选择的另一个值进行比较,并根据匹配(两个值),每个值将被分配一个介于1-6和其他之间的随机数。
以下是我的.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:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context="com.example.android.cc09june.TeamAOffense">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="Team A Offense Selection"
android:id="@+id/TeamAOffSel"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/PandR"
android:id="@+id/PandRA"
android:layout_marginTop="32dp"
android:layout_below="@+id/TeamAOffSel"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:onClick="exchange" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/MandF"
android:id="@+id/MandFA"
android:layout_below="@+id/PandRA"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:onClick="exchange" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/SandC"
android:id="@+id/SandCA"
android:layout_below="@+id/MandFA"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:onClick="exchange" />
以下是我的.java:
package com.example.android.cc09june;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.ActionBarActivity;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
公共类TeamAOffense扩展了ActionBarActivity {
public void exchange (View view){
//need to make it link to TeamA.xml
Intent intent = new Intent(TeamAOffense.this, ExchangeAToB.class);
startActivity(intent);
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_team_aoffense);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_team_aoffense, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
} }
答案 0 :(得分:0)
使用SharedPreferences,在您的第一个活动上声明了这个
SharedPreferences sharedpreference;
然后在onCreate()
上sharedpreference=PreferenceManager.getDefaultSharedPreferences(this.getBaseContext());
然后在onClick()
上public void onClick(View view){
sharedpreference.edit().putString("button_value",btn1.getText().toString()).apply();
}
然后在其他活动上再次声明SharedPreferences:
String value = sharedpreference.getString("button_value","");
答案 1 :(得分:0)
正如Jibran Khan建议你可以使用共享偏好。
获取共享偏好
的访问权限SharedPreferences prefs = this.getSharedPreferences(
"your.app.package", Context.MODE_PRIVATE);
在onCreate方法中,初始化按钮并为每个按钮设置单击侦听器,如下所示:
Button button = (Button) findViewById(R.id. SandCA);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
//To edit shared preferences use editor as follows
SharedPreferences.Editor editor = prefs.edit();
editor.putString("key","value");
editor.commit();
}
});
在您的其他活动中,如果您想再次阅读首选项,请获取共享首选项对象和
preferences.getString("key", "");// second parameter is default value.
希望这就是你要找的东西。 如果您不想存储字符串值,可以使用putLong,putBoolean等相关方法。 。
如果您觉得我的回答有帮助,您可以投票给我答案。 :)
答案 2 :(得分:0)
您可以设置静态值,并在需要的任何位置获取它。
public class DataManager {
private int value;
private static final DataManager instance = new DataManager();
private DataManager() {
}
public value getValue() {
return value;
}
public void setValue(int value) {
this.value = value;
}
public static DataManager getInstance() {
return instance;
}
}
DataManager.getInstance().setValue(10);
DataManager.getInstance().getValue();