创建两个view,使得view2放在view1的右边,同时view1和view2之间存在20dp间距
时间: 2023-05-01 15:02:31 浏览: 203
Android自定义View实现拼图小游戏
题意:创建了两个View,使得View2放在View1的右边,并且View1和View2之间有20dp的间距。
回答:可以使用LinearLayout布局,将两个View都放入LinearLayout中,设置LinearLayout为横向布局(android:orientation="horizontal"),在View1和View2中间设置一个20dp的空白View(可以使用View或者Space实现),具体可参考以下代码:
```
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<View
android:id="@+id/view1"
android:layout_width="wrap_content"
android:layout_height="match_parent"/>
<Space
android:layout_width="20dp"
android:layout_height="match_parent"/>
<View
android:id="@+id/view2"
android:layout_width="wrap_content"
android:layout_height="match_parent"/>
</LinearLayout>
```
阅读全文