Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have these 2 buttons inside an Activity. The backBtn works fine, but nothing happens when I click on the reg_country button. Any idea of what's going on?

[EDIT] Edited with some log, onClick just does't executes when I touch the button.

 08-10 09:33:08.608: D/dalvikvm(806): GC_EXTERNAL_ALLOC freed 365 objects / 24360 bytes in 58ms
 08-10 09:33:11.608: E/RegisterActivity(806): Activity started
 08-10 09:33:14.317: E/RegisterActivity(806): onClick (backBtn)
 08-10 09:33:16.268: E/RegisterActivity(806): Activity started

Part of the Activity code

Log.e("RegisterActivity", "Activity started");

backBtn = (Button) findViewById(R.id.backBtn);
backBtn.setText("Cancelar");
backBtn.setVisibility(View.VISIBLE);

backBtn.setOnClickListener(new OnClickListener() {
    @Override
    public void onClick(View v) {
        Log.e("RegisterActivity", "onClick (backBtn)");
        finish();
    }
});


reg_country = (Button) findViewById(R.id.reg_country);
reg_country.setText("reg_country");
reg_country.setClickable(true);
reg_country.setOnClickListener(new OnClickListener() {
    @Override
    public void onClick(View v) {
        Log.e("RegisterActivity", "onClick (reg_country)");
        finish();
    }
});

Maybe because reg_country stays inside a TableLayout? backBtn comes from the included actionbar_layout

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#FFFFFF"
    android:orientation="vertical" >

    <include
        android:id="@+id/include1"
        layout="@layout/actionbar_layout" />

    <!-- Registration Form -->

    <TableLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="20dip"
        android:layout_marginRight="20dip"
        android:layout_marginTop="20dip"
        android:background="@drawable/balao_formulario_cadastrar"
        android:clickable="true"
        android:gravity="center"
        android:isScrollContainer="true"
        android:orientation="vertical"
        android:paddingLeft="10dip"
        android:paddingRight="10dip"
        android:paddingTop="50dip"
        android:stretchColumns="1" >

        <EditText
            android:id="@+id/reg_fullname"
            android:layout_width="fill_parent"
            android:layout_height="40dip"
            android:layout_marginBottom="20dip"
            android:layout_marginTop="5dip"
            android:background="@drawable/stroke"
            android:hint="Nome Completo"
            android:imeOptions="actionNext"
            android:inputType="textPersonName"
            android:singleLine="true" />

        <EditText
            android:id="@+id/reg_email"
            android:layout_width="fill_parent"
            android:layout_height="40dip"
            android:layout_marginBottom="20dip"
            android:layout_marginTop="5dip"
            android:background="@drawable/stroke"
            android:hint="E-mail"
            android:inputType="textEmailAddress"
            android:singleLine="true" />

        <EditText
            android:id="@+id/reg_password"
            android:layout_width="fill_parent"
            android:layout_height="40dip"
            android:layout_marginBottom="20dip"
            android:layout_marginTop="5dip"
            android:background="@drawable/stroke"
            android:hint="Senha"
            android:password="true"
            android:singleLine="true" />

        <Button
            android:id="@+id/reg_country"
            android:layout_width="fill_parent"
            android:layout_height="40dip"
            android:layout_marginBottom="25dip"
            android:clickable="true"
            android:gravity="left|center_vertical"
            android:text="Selecione um PaĆ­s"
            android:textSize="15dip" />

        <!-- Terms of Use TextView -->

        <TextView
            android:id="@+id/reg_terms_link"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:text="@string/termos"
            android:textColor="#3D3D3D"
            android:textSize="10dip" />
    </TableLayout>

    <Button
        android:id="@+id/registerBtn"
        android:layout_width="fill_parent"
        android:layout_height="35dip"
        android:layout_marginLeft="20dip"
        android:layout_marginRight="20dip"
        android:layout_marginTop="20dip"
        android:background="@drawable/button_cadastrar"
        android:text="Cadastrar"
        android:textColor="#3D3D3D"
        android:textSize="15dip" />

    <!-- Registration Form Ends -->

</LinearLayout>
share|improve this question
I am not sure that finish inside the listener calls finish of the activity. you should check that. – cosmincalistru Aug 10 '12 at 12:01
Well backBtn is finishing the activity correctly... – Lucas Jota Aug 10 '12 at 12:03
sorry, missed that... – cosmincalistru Aug 10 '12 at 12:04
Does reg_country.setText("reg_country"); work? – alex Aug 10 '12 at 12:04
maybe some log could clear the issue? could you post it from your logcat? – cosmincalistru Aug 10 '12 at 12:07
show 7 more comments

1 Answer

After give an id to the table layout; maybe you can try that :

LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
                View layout = inflater.inflate(R.layout.idOfTableLayout, null);

                 reg_country = (Button)layout.findViewById(R.id.reg_country);
share|improve this answer
I wasn't able to do that because the TableLayout wasn't reached by R.layout, only by R.id... So I put the tablelayout in another xml file and included it on register.xml. But nothing happens when I click the button either... – Lucas Jota Aug 10 '12 at 13:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.