mDriver =(Button)findViewById(R.id.driver);

时间:2017-08-01 03:07:28

标签: java android android-studio

    mDriver = (Button) findViewById(R.id.driver);
    mCustomer = (Button) findViewById(R.id.customer);

有人可以帮助我...我正在无法解析符号“驱动程序”无法解析上述符号“客户”。我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

<Button 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:text="I'm a Driver"
    android:id="@+id/Driver" />

<Button 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content"
    android:text="I'm a Customer" 
    android:id="@+id/Customer" />

在布局文件中,您的ID为:Driver&amp; Customer,但在您的代码中,您已driver&amp; customer

检查以下代码:

mDriver = (Button) findViewById(R.id.Driver);
mCustomer = (Button) findViewById(R.id.Customer);