3
안녕하세요, 동료 프로그래머. 몇 시간 동안 인터넷 검색을하고 있지만 해결책을 찾을 수 없습니다.Eclipse Juno ADT 번들 패키지의 'Camerazoom and Cameratilt'속성에 대한 리소스 식별자가 없습니다.
오류 : 나는 두 가지 오류를 얻을 수 속성 'cameraZoom' 'com.avans.airports'
- 오류 패키지를 찾지 리소스 식별자 없습니다 : 속성 'cameraTilt에 대한 찾을 수 없습니다 리소스 식별자 '에 패키지'com.avans.airports '또한
이러한 오류와 함께한다. Eclipse에서 R.java 파일이 누락되었습니다.
Google Play 서비스 라이브러리를 추가했습니다. 나는 모든 것을 시도했지만 해결책을 찾을 수 없으며 지금 몇 시간 동안 붙어 있습니다.
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
xmlns:map="http://schemas.android.com/apk/res-auto"
android:id="@+id/the_map"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:name="com.google.android.gms.maps.MapFragment"
map:cameraTilt="45"
map:cameraZoom="14"
/>
그리고이 코드 조각
: 나는 오류가private Airport airport;
private TextView txtName;
private TextView txtLatitude;
private TextView txtLongitude;
private TextView txtElavation;
private TextView txtIso;
private TextView txtMunicipality;
private Button btnMap;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_info);
txtName = (TextView) findViewById(R.id.txtName);
txtLatitude = (TextView) findViewById(R.id.txtLatitude);
txtLongitude = (TextView) findViewById(R.id.txtLongitude);
txtElavation = (TextView) findViewById(R.id.txtElavation);
txtIso = (TextView) findViewById(R.id.txtIso);
txtMunicipality = (TextView) findViewById(R.id.txtMunicipality);
btnMap = (Button) findViewById(R.id.btnMap);
을, R은 변수
에 해결할 수없는이 줄을 추가하는
나는 또한 facin입니다. g 같은 문제. 내 게임 서비스 버전을 10.0.1로 업데이트했습니다. – Manish