검색 한 적이 있지만 해결 방법이 하나도 없습니다. 내가QuickContactBadge가 충돌 함 응용 프로그램 :
QuickContactBadge contactBadge = (QuickContactBadge) findViewById(R.id.quickContactBadge);
를 추가하는 경우 I가 충돌합니다. 다음으로 변경했습니다.
QuickContactBadge contactBadge;
protected void onCreate(Bundle savedInstanceState) {
...
contactBadge = (QuickContactBadge) findViewById(R.id.quickContactBadge);
}
그리고 충돌이 없습니다. 하지만 contactBadge.Anything();
을 추가하면 충돌이 발생합니다. 아무리 0x메서드가 충돌합니다. I.E. contactBadge.assignContactFromEmail("[email protected]", true);
안드로이드 활동 :
public class MainActivity extends Activity {
QuickContactBadge contactBadge;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
if (savedInstanceState == null) {
getFragmentManager().beginTransaction().add(R.id.container, new MainFragment()).commit();
}
contactBadge = (QuickContactBadge) findViewById(R.id.quickContactBadge);
contactBadge.assignContactFromEmail("[email protected]", true);
}
public static class MainFragment extends Fragment {
public MainFragment() {
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_main, container, false);
return rootView;
}
}
매니페스트 :
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.pointlight.android.kingdomcraft"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="19" />
<uses-permission android:name="android.permission.READ_CONTACTS" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/android:Theme.Holo.NoActionBar" >
<activity
android:name="com.pointlight.android.kingdomcraft.MainActivity"
android:label="@string/app_name"
android:screenOrientation="landscape" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
레이아웃 :
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.pointlight.android.kingdomcraft.MainActivity$MainFragment" >
<QuickContactBadge
android:id="@+id/quickContactBadge"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>
'findViewById'를 사용하기 전에 레이아웃을 팽창 시켰습니까? 그렇지 않으면'null '을 리턴한다. –
은 '을 사용하고 [link] (http://stackoverflow.com/questions/5530625/android-strange-behaviour-in-quickcontactbadge) –
Akshay
을 참조하십시오. 그래, 내가 부풀려, 그 기본 생성 된 활동 방금 방금 방법을 손질 – SemperAmbroscus