我有以下XML布局代码:
<?xml version="1.0" enCoding="utf-8"?><linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:layout_wIDth="match_parent" androID:layout_height="match_parent" androID:orIEntation="horizontal" androID:weightSum="10" > <VIDeoVIEw androID:ID="@+ID/vIDeoVIEw_player" androID:layout_wIDth="0dp" androID:layout_height="fill_parent" androID:layout_weight="8.5" /> <linearLayout androID:layout_wIDth="0dp" androID:layout_height="fill_parent" androID:layout_weight="1.5" androID:gravity="center" androID:orIEntation="vertical" > <ImageVIEw androID:ID="@+ID/imageVIEw_indicator" androID:layout_wIDth="50dp" androID:layout_height="50dp" /> <Imagebutton androID:ID="@+ID/imagebutton_play" androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:src="@androID:drawable/ic_media_pause" /> </linearLayout></linearLayout>
它出现在我的图形布局中,如下所示.
但在我的设备上它似乎如下.
在实际设备右侧占用的面积大于指定的重量.我尝试了很多但没有成功.我的代码有什么问题???
解决方法:
它可能会根据视频的宽高比进行调整.
将VIDeoVIEw放在具有正确重量的另一个视图中.
试试这段代码:
<linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:layout_wIDth="match_parent" androID:layout_height="match_parent" androID:orIEntation="horizontal" androID:weightSum="10" > <FrameLayout androID:layout_wIDth="0dp" androID:layout_height="match_parent" androID:layout_weight="8.5"> <VIDeoVIEw androID:ID="@+ID/vIDeoVIEw_player" androID:layout_wIDth="match_parent" androID:layout_height="match_parent" /> </FrameLayout>...
总结 以上是内存溢出为你收集整理的android – 布局在图形布局和实际设备上出现不同全部内容,希望文章能够帮你解决android – 布局在图形布局和实际设备上出现不同所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)