TestaActivity.java
public class TestaActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
tvText=(TextView)findViewById(R.id.textView1);
tvText.setText("Sample");
}
}
Print.java
public class Print {
public Print(Context tempContext) {
//I want to assign the value to the tvText from here
}
}
上記の例では、tvText のテキストを "Sample" に設定しています。同様に、作成されたら、Print クラス内で textView1 ID に何らかの値を割り当てる必要があります。
それを行う方法を理解するのを手伝ってください。