我的用户界面看起来像横向模式:
但我希望将它们并行。所以应该有宽度/ 2而不是高度/ 2.所以我该如何改变呢?
我的代码看起来像这样:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffffff">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<Button
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/photo"
android:layout_weight="0.5"
android:id="@+id/btnTakePhoto" />
<Button
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/video"
android:layout_weight="0.5"
android:id="@+id/btnRecordVideo"
/>
</LinearLayout>
</FrameLayout>
提前感谢您的帮助!
答案 0 :(得分:0)
在app目录的 res 文件夹中添加 layout-land 文件夹,并在此文件夹中设计具有相同名称的xml。 Android框架将检测模式并选择layout-land文件夹中定义的布局文件。
*记住布局中的xml文件名,layout-land文件夹应该相同。