只是停留在这里,我不知道如何在多个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);发布于 2012-12-21 03:19:23
setVisibility()应该可以解决你的问题。使用view.setVisibility(View.VISIBLE)和view.setVisibility(View.GONE)动态显示和隐藏activity布局中的视图。或者,如果您有多个xml文件,并且希望在同一个活动中显示它们,那么只需再次使用适当的id调用setContentView(id)即可。
https://stackoverflow.com/questions/13978277
复制相似问题