我一直在尝试在eclipses工作台中构建我的应用程序,但是我偶然发现了一条错误消息“无法从视图转换为复选框”。我尝试了不同的方法来解决这个问题无济于事,想知道是否有人可以帮我解决问题
import android.os.Bundle;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.view.View;
import android.widget.Checkbox;
import android.widget.TextView;
@SuppressLint("ParserError")
public class MainActivity extends Activity {
TextView textView;
CheckBox pepBox, cheeseBox;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
pepBox =
(CheckBox) findViewById(R.id.checkBox1);
cheeseBox =
(CheckBox) findViewById(R.id.checkBox2);
textView =
(TextView) findViewById(R.id.textView2);
}
这是我用过的编码
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:padding="@dimen/padding_medium"
android:text="@string/hello_world"
tools:context=".MainActivity" />
<CheckBox
android:id="@+id/checkBox1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="57dp"
android:text="@string/pepperoni" />
<CheckBox
android:id="@+id/checkBox2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/textView1"
android:layout_below="@+id/checkBox1"
android:layout_marginTop="33dp"
android:text="@string/extra_cheese" />
<Button
android:id="@+id/button1"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignRight="@+id/checkBox1"
android:layout_below="@+id/textView1"
android:onClick="onButton1Click"
android:text="@string/show" />
这是我的xml文件 感谢
答案 0 :(得分:5)
这让我有点挠头。我不得不将你的代码加载到eclipse中找到它。将import android.widget.Checkbox;
更改为import android.widget.CheckBox;
。 (注意复选框中的大写字母B。)当我进行更改时,您发布的代码工作正常。
eclipse没有强调违规导入吗?将鼠标光标悬停在突出显示上将为您提供一些线索如何修复它。 (请原谅我,如果我听起来很光顾。很难判断一个低代表的人是网站新手还是平台新手)