我有一个名为activity_main的xml文件:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
>
<fragment android:name="com.example.shko_00.myapp.MapsActivity"
android:id="@+id/lm_fragment"
android:layout_weight="0.5"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<fragment android:name="com.example.shko_00.myapp.GPSActivity"
android:id="@+id/pm_fragment"
android:layout_weight="0.5"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</LinearLayout>
我想问一下,如果在方向更改为横向时,有什么方法可以在onConfigurationChanged方法中以编程方式更新android:orientation从vertical到horizontal?
答案 0 :(得分:0)
改变方向不是正确的方法。你应该有另一个文件your_layout_name-land。在该文件中使用水平方向。