不幸的是,我正在Yosemite OS X计算机上使用Android Studio(最新的1.0.2)开发Android应用程序。
该应用包含一个创建为Android库的库。
我使用Android Studio的可视化编辑器修改了库中的布局。当我运行应用程序时,模拟器继续使用旧布局。
我做了以下尝试:
无论我做什么,模拟器都拒绝使用新的布局。
有没有人可以帮助我?
活动的XML如下:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
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="it.misc.accountlib.RegisterNewUserActivity">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/scrollView" >
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="@string/message_activity_register_new_user"
android:id="@+id/textView" />
<Space
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:minHeight="@dimen/abc_text_size_large_material" />
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textPersonName"
android:ems="10"
android:id="@+id/nameAndSurnameTextField"
android:hint="@string/name_surname" />
<Space
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:minHeight="@dimen/abc_text_size_small_material" />
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textEmailAddress"
android:ems="10"
android:id="@+id/emailTextField"
android:hint="@string/libaccount_email" />
<Space
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="@dimen/abc_text_size_small_material" />
<Space
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="@dimen/abc_text_size_small_material"
android:layout_gravity="center_horizontal" />
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:id="@+id/nicknameTextField"
android:hint="@string/libaccount_nickname"
android:inputType="text" />
<Space
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:minHeight="@dimen/abc_text_size_small_material" />
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textPassword"
android:ems="10"
android:id="@+id/passwordTextField"
android:password="false"
android:hint="@string/libaccount_password" />
<Space
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:minHeight="@dimen/abc_text_size_small_material" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/libaccount_register_new_account_button_text"
android:id="@+id/registerNewUserButton" />
</LinearLayout>
</ScrollView>
然后应用程序在此方法中崩溃(在onCreate()
内部调用):
protected void initUIElements() {
nameSurnameTextField = (EditText) findViewById(R.id.nameTextField);
emailTextField = (EditText) findViewById(R.id.emailTextField);
nickNameTextField = (EditText) findViewById(R.id.nicknameTextField);
passwordTextField = (EditText) findViewById(R.id.passwordTextField);
registerNewUserButton = (Button) findViewById(R.id.registerNewUserButton);
// registerNewUserButton.setEnabled(false);
registerNewUserButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
registerNewUserButton.setEnabled(false);
verifyValuesAndRegister();
} // onClick
});
} // initUIElements
有这个例外:
02-08 21:08:29.003 2666-2666/it.misc.app E/AndroidRuntime﹕ FATAL EXCEPTION: main
Process: it.misc.app, PID: 2666
java.lang.NoSuchFieldError: No static field emailTextField of type I in class Lit/misc/accountlib/R$id; or its superclasses (declaration of 'it.misc.accountlib.R$id' appears in /data/app/it.misc.app-1/base.apk)
at it.misc.accountlib.RegisterNewUserActivity.initUIElements(RegisterNewUserActivity.java:38)
at it.misc.accountlib.RegisterNewUserActivity.onCreate(RegisterNewUserActivity.java:29)
...
我唯一的提示是:
/data/app/it.misc.app-1/base.apk
似乎有两个it.misc.app
个包。
答案 0 :(得分:0)
我知道这很旧,但是我遇到了同样的问题,我只是通过将View重新设置为具有相同内容但名称不同的另一个layout-xml来解决它。