如何从android中获取java到xml文件的变量值?

时间:2015-05-27 11:46:34

标签: java android xml

我从.java文件中的另一个活动获得了一些价值。现在我想在我的.xml文件中使用该值。我应该如何处理这个问题。我应该生成动态xml吗?我可以在xml运行时设置一些值吗?

我的.java文件是:

package com.example.shiza.chemistrylabapp;

import android.content.Intent;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.Toast;


public class ExperimentExplaination extends ActionBarActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_experiment_explaination);
        Intent i = getIntent();

        int position = i.getIntExtra("Position",0);
    }
}

现在,我想将位置用于xml文件。

.xml文件:

<RelativeLayout 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:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin"
    tools:context="com.example.shiza.chemistrylabapp.ExperimentExplaination">
</RelativeLayout>

1 个答案:

答案 0 :(得分:1)

为相对布局资源添加ID:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"     
    android:id="@+id/layout
    android:layout_width="match_parent"
    android:layout_height="match_parent" 
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin"
    tools:context="com.example.shiza.chemistrylabapp.ExperimentExplaination">
</RelativeLayout>

然后在你的课堂上,你可以得到那个参考并设定价值。

RelativeLayout rl = (RelativeLayout)findViewById(R.id.layout);

然后设置您想要的相对布局的任何属性

//Example
int width = 90;
rl.setWidth = width;