0
내 사용자 인터페이스가 가로 모드처럼 보이는 나쁜 같습니다안드로이드 가로 모드는
하지만 병렬로 갖고 싶어. 그래서 높이/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>
감사를 사전에 도움을!
질문을 올바르게 이해하면'LinearLayout'의 방향을'horizontal'으로 설정할 수 있습니다 :'android : orientation = "horizontal"' – antonio
고맙습니다. – mafioso