電子書籍の厳選無料作品が豊富!

このページを参考に学習をしていたのですが
http://libro99.appspot.com/index3?id=29&page=2&l …

.javaに追加するぶぶんで

text.setText(selradio.getText());
~~~~
の波線の部分のエラーをどうしても消すことができず
困っています

package test.radiobutton;

import android.app.Activity;
import android.os.Bundle;
import android.widget.RadioButton;
import android.widget.RadioGroup;

public class radiobuttontest extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
RadioGroup group = (RadioGroup)this.findViewById(R.id.group);
RadioButton radio1 = (RadioButton)this.findViewById(R.id.radio1);
RadioButton radio2 = (RadioButton)this.findViewById(R.id.radio2);


radio2.setChecked(true);


int selid = group.getCheckedRadioButtonId();
RadioButton selradio = (RadioButton)this.findViewById(selid);
text.setText(selradio.getText());
}
}

main.xml


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>

<RadioGroup
android:id="@+id/group"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>

<RadioButton
android:text="@string/radio1_label"
android:id="@+id/radio1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<RadioButton
android:text="@string/radio2_label"
android:id="@+id/radio2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>

</RadioGroup>
</LinearLayout>

これ以上はかけませんがページの指示通りにやってるつもりです
どなたかご教授お願いします

A 回答 (1件)

こんにちは



Androidをやったことがないので間違っていたら済みません。

質問欄に掲載されたURLから辿ったところ、
少し前の項目”Google androidプログラミング入門: 「Activityクラスの基本を理解しよう!」 (6/8)”
http://libro99.appspot.com/index3?id=1023&page=6 …

この中では
private TextView text;
というものが宣言されています。

で、そのtextに
text = (TextView)this.findViewById(R.id.text);
でデザイン上のテキストビューを割り当てていると思うので

text.setText("こんにちは、" + s + "さん。");
でテキストの変更が可能になっているように思えます。

質問欄に掲載されたコードに載っていないだけかもしれませんが、
textの宣言と、割り当てを行えばよいのではないでしょうか?
    • good
    • 0
この回答へのお礼

エラーは消えたのですが 今度はアプリが動作しませんでした
まだ勉強することは多そうです

ありがとうございました

お礼日時:2010/12/04 14:39

お探しのQ&Aが見つからない時は、教えて!gooで質問しましょう!