<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:id="@+id/address"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:autoLink="map" />
<TextView
android:id="@+id/postcode"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:autoLink="map" />
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
</LinearLayout>
答案 0 :(得分:-1)
非常简单......
只需将onCickListener添加到TextView上即可。 在函数中不要直接调用map活动。 但是instaed首先改变了textview的颜色。 然后使用Handler调用postDelayed方法调用Map Activity以获得单击效果
检查下面的代码
Handler mHandler = new Handler();
final TextView myTextView = (TextView)findViewById(R.id.TextView01);
myTextView.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
myTextView.setTextColor(Color.red);
mHandler.postDelayed(new Runnable(){
public void run()
{
// Here call your map activity
}
},200L);
}
});
希望这会有所帮助:)