TextView onClick () не работает - PullRequest
       39

TextView onClick () не работает

33 голосов
/ 31 января 2012

вот мой код для main.xml

 <merge xmlns:android="http://schemas.android.com/apk/res/android">
 <RelativeLayout 
    android:id="@id/container" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"
    xmlns:android="http://schemas.android.com/apk/res/android">


<include layout="@layout/tabs" />

<ScrollView
    android:fillViewport="true" 
    android:scrollbars="@null"
    android:layout_height="fill_parent"
    android:layout_width="fill_parent">

    <LinearLayout 
        android:paddingTop="10dp"
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <!-- first text_view -->
        <TextView 
            android:background="@color/grey"
            android:textColor="@color/white"
            android:text="@string/category" 
            android:id="@+id/category1" 
            android:layout_height="wrap_content" 
            android:layout_width="fill_parent"
            android:layout_marginTop="65dp" 
            android:textSize="17dp"
            android:typeface="serif"/>

        <!-- first horizontal_scrollview -->
        <HorizontalScrollView 
            android:scrollbars="@null"
            android:id="@+id/horizontalScrollView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content">

            <LinearLayout android:id="@+id/linearLayout1"
                android:orientation="horizontal" 
                android:visibility="visible"
                android:layout_height="wrap_content"
                android:layout_width="wrap_content">

                <!-- image_view should be here -->

            </LinearLayout>
        </HorizontalScrollView>
    </LinearLayout>
</ScrollView>
</RelativeLayout>
</merge>

вот мой код для tabs.xml

<?xml version="1.0" encoding="utf-8"?>
 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" 
android:background="#333333">

<TextView
    android:textColor="@color/gradient_green"
    android:id="@+id/viewall"
        android:layout_width="85dp"
        android:layout_height="25dp"
        android:layout_marginLeft="10dp"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:textSize="17dp"
        android:textStyle="bold" 
        android:text="@string/view_all"
        android:onClick="onClick"
        android:focusable="false"
        android:clickable="true" />

    <TextView
        android:textColor="@color/white"
        android:id="@+id/pic"
        android:layout_width="45dp"
        android:layout_height="25dp"
        android:layout_alignParentTop="true"
        android:layout_toRightOf="@+id/viewall"
        android:textSize="17dp"
        android:textStyle="bold" 
        android:text="@string/pic"
        android:onClick="onClick"
        android:focusable="false"
        android:clickable="true" />
</RelativeLayout>

и вот код внутри Main.java:

 public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    TextView all = (TextView) this.findViewById(R.id.viewall);
    TextView pic = (TextView) this.findViewById(R.id.pic);

    all.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {
            TextView all = (TextView) findViewById(R.id.viewall);
            TextView pic = (TextView) findViewById(R.id.pic);

            Toast.makeText(Main.this, "VIEW ALL", Toast.LENGTH_SHORT).show();

            all.setTextColor(getResources().getColorStateList(R.color.gradient_green));
            pic.setTextColor(getResources().getColorStateList(R.color.white));
        }
    });

    pdf.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {
            TextView all = (TextView) findViewById(R.id.viewall);
            TextView pic = (TextView) findViewById(R.id.pic);

            Toast.makeText(Main.this, "VIEW ALL", Toast.LENGTH_SHORT).show();

            all.setTextColor(getResources().getColorStateList(R.color.white));
            pic.setTextColor(getResources().getColorStateList(R.color.gradient_green));
        }
    });

  }

Итак, если я устанавливаю setContentView () в Main.class или Main.java как setContentView (R.layout.tabs) вместо setContentView (R.layout.main), onClick () работает, что должноЯ делаю или что не так с моим кодом, который мешает onClick () не работать?

Ответы [ 5 ]

114 голосов
/ 31 октября 2012

Есть простой способ.Поместите это в TextView в XML:

android:clickable="true"
39 голосов
/ 31 января 2012

Используйте эти

 all = (TextView) this.findViewById(R.id.viewall);
 pdf = (TextView) this.findViewById(R.id.pic);

при создании, а затем установите

all.setOnclickListener (this) в методе oncreate () тоже. Реализация onClicklistener, когда он покажет ошибку. это будет работать как шарм.

Отредактированный

TextView btn=(TextView) findViewById(R.id.accInfo);
btn.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub
            //DO you work here
        }
    });

Установка Clicklistenner на TextView автоматически сделает его кликабельным, поэтому нет необходимости

android:clickable="true"
7 голосов
/ 19 декабря 2012

добавить android:clickable="true" в <TextView>

0 голосов
/ 01 февраля 2012

В вашем методе onCreate вам необходимо:

  1. Создание переменных для ваших TextViews
  2. Назначьте для них onClickListener

И вашему классу также необходимо реализовать OnClickListener.

public class SqliteTestsActivity extends Activity implements OnClickListener {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        TextView all = (TextView) R.findViewById(R.id.viewall);
        all.setOnClickListener(this);
    }

    public void onClick(View v) {
        // Fill in this with your switch statement
    }
}
0 голосов
/ 31 января 2012

пожалуйста, внесите изменения следующим образом:

 <include  android:id = "@+id/lyttab" layout="@layout/tabs" />

в вашем классе Java

 public void onClick(View v){   

  View view = findViewById(R.id.lyttab);

 all = (TextView) view.findViewById(R.id.viewall);
 pif = (TextView) view.findViewById(R.id.pic);


switch (v){

case  all :
    Toast.makeText(Main.this, "VIEW ALL", Toast.LENGTH_SHORT).show();

    all.setTextColor(getResources().getColorStateList(R.color.gradient_green));
    pic.setTextColor(getResources().getColorStateList(R.color.white));

    break;

case pic:
    Toast.makeText(Main.this, "PDF", Toast.LENGTH_SHORT).show();

    all.setTextColor(getResources().getColorStateList(R.color.white));
    pic.setTextColor(getResources().getColorStateList(R.color.gradient_green));
    break;

 }
 }

Я думаю, это поможет вам

...