이 문제를 해결하기 위해 모든 노력을 다했습니다. 페이스 북 로그인으로 앱을 만들고 있습니다. Android Facebook SDK 3.0을 사용하고 있으며 프로세스가 완벽하게 작동합니다. 이 문제는 화면의 다른 버튼과 함께 발생합니다. 내가 한 OnCreate조각이 시작될 때 OnClickListeners가 실행되지 않음
if(savedInstanceState == null) {
// Add the fragment on initial activity setup
mainFragment = new FacebookFragment();
getSupportFragmentManager()
.beginTransaction()
.add(android.R.id.content, mainFragment)
.commit();
} else {
// Or set the fragment from restored state info
mainFragment = (FacebookFragment) getSupportFragmentManager()
.findFragmentById(android.R.id.content);
}
이 코드가있을 때 그들은 내가 커버 아래 내가 아래에 게시 한 코드와 똑같은 금액
@ViewById Button login_butt,reg_butt;
@Click
void login_butt(){
login();
}
@Click
void reg_butt(){
startActivity(new Intent(LoginActivity.this,RegisterActivity_.class));
}
를 사용 androidannotations을 사용하여 발사되지 않습니다. 내 청취자 내가 문제가 내가 사용하고있는 androidannotations에 거짓말을 생각하지만, 제거 할 때 같은 문제 자체를 선물 처음
login_butt.setOnClickListener(new OnClickListener(){
@Override
public void onClick(View arg0) {
login();
}
});
reg_butt.setOnClickListener(new OnClickListener(){
@Override
public void onClick(View v) {
startActivity(new Intent(LoginActivity.this,RegisterActivity_.class));
}
});
이다 나는 두 가지를 시도하고 모두
을 실패했습니다. 버튼에 대한
내 XML은
<com.facebook.widget.LoginButton
android:id="@+id/authButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true" />
<Button
android:id="@+id/reg_butt"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_below="@+id/password_enter"
android:background="@drawable/register_select" />
<Button
android:id="@+id/login_butt"
style="?android:attr/buttonStyleSmall"
android:layout_width="150dp"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/reg_butt"
android:layout_alignBottom="@+id/reg_butt"
android:layout_alignParentLeft="true"
android:background="@drawable/login_select" />
전체 onCreate 메소드를 게시하십시오. 버튼 참조 설정이 누락 된 것으로 보입니다 ... 'reg_butt = (Button) findViewById (R.id.reg_butt)'가 있습니까? – edthethird
당신이 androidannotations에 익숙한지만 난 내 애플 리케이션 전체에 결함없이 그것을 사용하는지 모르겠다. 이 활동을 위해 나는 성공없이 그 기능을 사용하지 않으려 고 노력했다. 그리고 나는 findViewById – Darussian