1

我正在将 Android 应用程序转换为使用片段以支持横向模式下的平板电脑。

我想在平板电脑上以横向模式并排显示两个活动。目前,第一个活动 (DisplayNotams) 有一个按钮,该按钮调用意图来显示第二个活动 (图表)。第一个是单个项目的文本显示,使用寻呼机一次查看一个,第二个是绘制项目的图表。

Chart 不使用 xml 布局文件,因为它创建了自己的 ChartView,因此:

ChartView mView;
mView = new ChartView(this, mCentreLat, mCentreLong, mRadius);
setContentView(mView);

(ChartView 类扩展了 View,并包含大部分绘图代码。)

我正在使用 github 示例 commonsguy/cw-omnibus/LargeScreen/EU4you 来作为我修改后的代码的基础。问题(对我来说)是这在 layout 和 layout-large-land 中使用了不同的布局 xml 文件来区分两者。由于我只有 DisplayNotams 的布局 xml 文件,而 Chart 没有,我不知道如何进行。

有什么办法可以让这个例子适应我的情况吗?

作为参考,EU4You中的两个xml文件如下。

在布局中:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:id="@+id/countries"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
/>

在 layout-large-land 中:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="horizontal"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent">
  <FrameLayout
    android:id="@+id/countries"
    android:layout_weight="30"
    android:layout_width="0px"
    android:layout_height="fill_parent"
  />
  <FrameLayout
    android:id="@+id/details"
    android:layout_weight="70"
    android:layout_width="0px"
    android:layout_height="fill_parent"
  />
</LinearLayout>

“国家”对应于我的 DisplayNotam,“详细信息”对应于我的图表。

感谢那些回答的人。这就是我想出的,替换

ChartView mView;
mView = new ChartView(this, mCentreLat, mCentreLong, mRadius);
setContentView(mView);

ChartView mView;
mView = new ChartView(this, mCentreLat, mCentreLong, mRadius);
setContentView(R.layout.chart);
FrameLayout fl = (FrameLayout)findViewById(R.id.chart_frame);
fl.addView(mView);

并创建一个新的 chart.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="vertical" >
    <FrameLayout
        android:id="@+id/chart_frame"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
</LinearLayout>
4

2 回答 2

1

有一组addView函数可用于ViewGroup. 您可以使用它来将孩子添加到FrameLayouts.

ChartView mView;
mView = new ChartView(this, mCentreLat, mCentreLong, mRadius);

FrameLayout frame = (FrameLayout) findViewById(R.id.countries);
frame.addView(mView);
于 2012-11-29T12:41:16.183 回答
1

setContentView(mView)您可以在onCreateViewFragment 类的 -Method 中返回 ChartView,而不是使用:

    @Override
        public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
            ChartView mView;
            mView = new ChartView(this, mCentreLat, mCentreLong, mRadius);
            return mView;
        }
于 2012-11-29T12:47:18.520 回答