Android 布局优化:下载页面设计
<EditText
android:id='@+id/edit'
android:layout_width='match_parent'
android:layout_height='wrap_content'
android:layout_marginStart='20dp'
android:layout_marginTop='40dp'
android:layout_marginEnd='20dp'
android:hint='输入下载网址,不输入即为慕课网'
android:paddingStart='30dp'
android:paddingEnd='30dp' />
<LinearLayout
android:layout_width='match_parent'
android:layout_height='wrap_content'
android:layout_marginTop='20dp'
android:gravity='center'>
<Button
android:id='@+id/start_download'
android:layout_width='wrap_content'
android:layout_height='wrap_content'
android:text='开始下载'
android:layout_marginEnd='10dp' />
<Button
android:id='@+id/pause_download'
android:layout_width='wrap_content'
android:layout_height='wrap_content'
android:text='暂停下载'
android:layout_marginEnd='10dp' />
<Button
android:id='@+id/cancel_download'
android:layout_width='wrap_content'
android:layout_height='wrap_content'
android:text='取消下载' />
</LinearLayout>
原文地址: https://www.cveoy.top/t/topic/iee 著作权归作者所有。请勿转载和采集!