添加此的test.xml
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<Button
android:id="@+id/btnAddImage"
style="?android:attr/buttonStyleSmall"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Add Image" />
<HorizontalScrollView
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1.5"
android:fadingEdge="none"
android:orientation="horizontal" >
<LinearLayout
android:id="@+id/lnrParent"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
</LinearLayout>
</HorizontalScrollView>
</TableLayout>
和另一個佈局lay_image.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/lnrChild"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:id="@+id/btnExample"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
<ImageView
android:id="@+id/imgView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="50sp"
android:src="@drawable/ic_launcher" />
</LinearLayout>
這裏編碼
setContentView(R.layout.test);
final LinearLayout LnrLayout = (LinearLayout) findViewById(R.id.lnrParent);
Button BtnAddImage = (Button) findViewById(R.id.btnAddImage);
BtnAddImage.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
final LinearLayout LnrChildLayout = (LinearLayout) getLayoutInflater()
.inflate(R.layout.lay_image, null);
LnrChildLayout.setLayoutParams(new LayoutParams(
ViewGroup.LayoutParams.MATCH_PARENT,
ViewGroup.LayoutParams.WRAP_CONTENT));
LnrLayout.addView(LnrChildLayout);
int indexValue = LnrLayout.indexOfChild(LnrChildLayout);
LnrChildLayout.setTag(Integer.toString(indexValue));
final ImageView ImgView = (ImageView) LnrChildLayout
.findViewById(R.id.imgView);
int ImagePosition = LnrChildLayout.indexOfChild(ImgView);
ImgView.setTag(Integer.toString(ImagePosition));
ImgView.setOnLongClickListener(new OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
// get Position
String strPosition = (String) v.getTag();
Toast.makeText(test.this,
"ImageView getTag : >" + strPosition,
Toast.LENGTH_SHORT).show();
// getId
int strId = v.getId();
Toast.makeText(test.this,
"ImageView getId : >" + strId,
Toast.LENGTH_SHORT).show();
return true;
}
});
LnrChildLayout
.setOnLongClickListener(new OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
String strPosition = (String) v.getTag();
Toast.makeText(test.this, "" + strPosition,
Toast.LENGTH_SHORT).show();
return true;
}
});
Button BtnExample = (Button) LnrChildLayout
.findViewById(R.id.btnExample);
int ButtonPosition = LnrChildLayout.indexOfChild(BtnExample);
BtnExample.setTag(Integer.toString(ButtonPosition));
BtnExample.setOnLongClickListener(new OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
String strPosition = (String) v.getTag();
Toast.makeText(test.this,
"Button getTag : >" + strPosition,
Toast.LENGTH_SHORT).show();
int strId = v.getId();
Toast.makeText(test.this, "Button getId : >" + strId,
Toast.LENGTH_SHORT).show();
return true;
}
});
}
});
嘗試'getLeft()'/'的getX()' – pskink
確定什麼是「位置」你的意思是? (x,y)在屏幕上的位置? (x,y)在父佈局中的位置?子視圖數組中的索引? – pskink