ここで立ち往生しました。複数のxmlファイルに表示する方法がわかりません。button1.xml、button2.xml、およびbutton3.xmlがあります。これらのビューをアクティビティで動的に切り替えられるようにしたいと考えています。
> <LinearLayout
> xmlns:android="http://schemas.android.com/apk/res/android"
> android:orientation="vertical"
> android:layout_width="match_parent"
> android:layout_height="match_parent" >
> <com.apps.example.TouchImageView
> android:id="@+id/snoop"
> android:layout_width="match_parent"
> android:src="@drawable/keutamaandua"
> android:layout_height="match_parent" />
javaファイル
public class TouchImageViewActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.button1);
TouchImageView img = (TouchImageView) findViewById(R.id.snoop);
img.setImageResource(R.drawable.keutamaandua);
img.setMaxZoom(4f);