所以我创建了一个java类,它生成一个我希望在XML GridLayout TextView中显示的字符串,但是我一直在弄清楚如何转移变量I' ve在我的java类中创建为XML中的可用格式。
我尝试过简单地用Java创建TextView,但我试图直接在按钮上创建一个带有文本的垂直设计,而GridLayout似乎是最好的方法。
这是我的代码归结为
String output;
//determine value of string
这是我的XML
<LinearLayout 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.reid.agerangecalculator.CalculateActivity">
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/GridLayout1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:columnCount="1"
android:rowCount="2"
android:orientation="horizontal"
tools:context=".GridXMLActivity" >
<TextView
android:id="@+id/textview1"
android:layout_column="0"
android:layout_row="0"
android:text= ""/>
<Button
android:id="@+id/button3"
android:layout_column="0"
android:layout_gravity="left|top"
android:layout_row="1"
android:text="Button" />
</GridLayout>
</LinearLayout>
答案 0 :(得分:2)
xml布局中的Textview
<TextView
android:id="@+id/textview1"
android:layout_column="0"
android:layout_row="0"
android:text= ""/>
然后,在您的活动类中:
String output;
// globally
TextView textView1
//in your OnCreate() method
textView1 = (TextView)findViewById(R.id.textview1);
textView1.setText(output);