こんにちはあなたはコードの下の両方を使用する必要があります:コードの下
<TextView
android:id="@+id/reg_text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/login_btn"
android:layout_centerHorizontal="true"
android:layout_marginTop="10dp"
android:clickable="true"
android:text="Are you now need to create an account?"
android:textColor="#ff0000ff"
android:textSize="15sp"
/>
そして
private TextView tv1;
tv1= (TextView)findViewById(R.id.reg_text);
tv1.setOnTouchListener(new OnTouchListener() {
@Override
public boolean onTouch(View arg0, MotionEvent arg1) {
// TODO Auto-generated method stub
ProgressDialog progressBar = ProgressDialog.show(MainActivity.this, "Title",
"شکیبا باشید!");
progressBar.setCancelable(true);
Intent i = new Intent(getApplicationContext(), Register.class);
startActivity(i);
return false;
}
});
は、この作業コードまたは擬似コードのですか?それがそのまま動作することはできませんでした。とにかくtks!更新されました! :) –