如何将视图与布局相关联

时间:2012-11-29 12:37:21

标签: android android-layout android-fragments

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

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

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

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

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

我正在使用github示例commonsguy / cw-omnibus / LargeScreen / EU4you来修改我的修改后的代码。问题(对我来说)是这在布局和布局中使用不同的布局xml文件 - 大地来区分这两者。由于我只有一个用于DisplayNotams的布局xml文件,而没有用于Chart的布局xml文件,因此我不知道如何继续。

有什么方法可以让我的情况适应我的情况吗?

作为参考,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"
/>

布局大片:

<?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>

'countries'将对应我的DisplayNotams,'详细信息'将对应于我的图表。

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

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>

2 个答案:

答案 0 :(得分:1)

addView可以使用一组ViewGroup个功能。您可以使用它将子项添加到FrameLayout

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

FrameLayout frame = (FrameLayout) findViewById(R.id.countries);
frame.addView(mView);

答案 1 :(得分:1)

您可以在setContentView(mView) - 片段类的方法中返回ChartView,而不是使用onCreateView

    @Override
        public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
            ChartView mView;
            mView = new ChartView(this, mCentreLat, mCentreLong, mRadius);
            return mView;
        }