将数据从活动传递到Android中的布局

时间:2015-09-24 19:01:30

标签: android android-layout

我的Android活动如下。

public class DummyActivity extends android.support.v7.app.ActionBarActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.dummy_layout);
        Intent intent = getIntent();
        int dots = intent.getExtras().getInt("dots");

    }
  }

此活动从其他活动中获取点的值,没有任何问题。 现在我想将点传递给下面给出的布局dummy_layout。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >

    <com.test.DummyView
        android:id="@+id/dummyView"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_weight="1"
        />


</LinearLayout>

我尝试在&#39; dummy_layout&#39;中创建隐藏字段。但无法让它发挥作用。有没有直接的方法可以做到这一点?我需要访问&#39; dots&#39;在虚拟视图&#39;的init方法中这是班级处理&#39; dummy_layout&#39;如布局xml中所示。

1 个答案:

答案 0 :(得分:1)

为什么不做你

((DummyView) findViewById(R.id.dummyView)).setDots(dots)

onCreate