我正在尝试拖放应用程序。为此,我首先使用以下代码创建了main.xml
。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<com.hide.move.MyImageView
android:id="@+id/Image1"
android:src="@drawable/sarathphoto7"
android:layout_weight="50"
android:adjustViewBounds="true"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
/>
<com.hide.move.MyImageView
android:id="@+id/Image2"
android:src="@drawable/sarathphoto6"
android:layout_weight="50"
android:adjustViewBounds="true"
android:layout_width="wrap_content"
android:layout_height="200px"
/>
</LinearLayout>
并创建了一个Java文件来查看main.xml
内容。
public class hidenmove extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}.
但我正在