我需要创建textview(或类似)dinamicaly,我是一个新手,我需要你的帮助。 这些是从Web服务中重现的参数
String jacuzzi=yes
String estacionamiento = no
String peli= yes
String cable=yes
String roomservice= no
i need to create them when the (variable == "yes")
我已经找到了答案,但我不明白
我不知道我是否真的需要创建一个新的布局,这里我把我的android xml
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_vertical"
android:orientation="vertical"
android:background="#ccccfe" >
<TableRow
android:id="@+id/tableRow2"
android:layout_width="match_parent"
android:layout_height="45dp" >
<ImageView
android:id="@+id/imageView0"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:background="#ffd7bd"
android:orientation="vertical"
android:layout_marginLeft="-200dp "
android:textStyle="bold"
android:textColor="#000000" android:shadowColor="#8a6603"
android:shadowDx="3" android:shadowDy="2" android:shadowRadius="1.8"
android:src="@drawable/muestra2" />
</TableRow>
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="60dp"
android:layout_marginTop="10dp"
android:text="Motel: "
android:textColor="#303f46"
android:textSize="21sp"
android:textStyle="bold" />
<ImageView
android:id="@+id/imagen"
android:layout_width="fill_parent"
android:layout_height="250dp"
android:background="#ccccfe"
android:scaleType="fitXY"
android:padding="1dp"/>
<TableLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TableRow >
<TextView />
<TextView />
</TableRow>
<TableRow >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Dirección: "
android:textColor="#303f46"
android:textSize="15sp"
android:textStyle="bold"
android:width="90dp" />
<TextView
android:id="@+id/textView2"
android:text=""
android:textSize="14sp"
android:layout_width="wrap_content"
android:textColor="#373737"/>
</TableRow>
<TableRow >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#303f46"
android:textSize="15sp"
android:textStyle="bold"
android:width="90dp"
android:text="Comuna: " />
<TextView
android:id="@+id/textView3"
android:text=""
android:textSize="14sp"
android:layout_width="wrap_content"
android:textColor="#373737" />
</TableRow>
<TableRow >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#303f46"
android:textSize="15sp"
android:textStyle="bold"
android:width="90dp"
android:text="Descripcion: " />
<TextView
android:id="@+id/desc"
android:text=""
android:textSize="14sp"
android:layout_width="wrap_content"
android:textColor="#373737" />
</TableRow>
<TableRow >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#303f46"
android:textSize="15sp"
android:textStyle="bold"
android:text="Telefono: "
android:width="90dp" />
<TextView
android:id="@+id/telefono"
android:text=""
android:textSize="14sp"
android:layout_width="wrap_content"
android:textColor="#373737" />
</TableRow>
<TableRow >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#303f46"
android:textSize="15sp"
android:textStyle="bold"
android:text="Correo: "
android:width="90dp"/>
<TextView
android:id="@+id/correo"
android:text=""
android:textSize="14sp"
android:layout_width="wrap_content"
android:textColor="#373737" />
</TableRow>
<TableRow>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#303f46"
android:textSize="15sp"
android:textStyle="bold"
android:text="SitioWeb:"
android:width="90dp" />
<TextView
android:id="@+id/sitio"
android:text=""
android:textSize="14sp"
android:layout_width="wrap_content"
android:textColor="#373737" />
</TableRow>
</TableLayout>
</LinearLayout>
</ScrollView>
答案 0 :(得分:1)
最好创建它们,如果不需要则删除它们,而不是反过来如下所示。
首先
boolean jacuzzi = true;
boolean estacionamiento = false;
boolean peli = true;
boolean cable = true;
boolean roomservice = false;
使用布尔语而不是字符串。 boolean可以是true或false。拥有是或否,更容易使用。
//如果你必须使用字符串
使用
if (jacuzzi.contentEquals("yes")
而不是下面的布尔值。
//
我将向你展示按摩浴缸,为所有人使用相同的技术。
TextView tv = (TextView) findViewById(R.id.textView1);
我把它称为电视,但你可以称它为任何东西。对于R.id.textView1 - 这是在你的XML代码中引用你的TextView,android会自动调用textView1但你可以通过更改ID来改变它。
if(jacuzzi == false)
{tv.setVisibility(View.GONE);}
如果jacuzzi为false,则会读取TextView消失。您也可以使用
if(!jacuzzi)
{tv.setVisibility(View.GONE);}
因为他们的意思相同。
否则,对于动态编码,这要困难得多。您需要通过findViewById引用linearlayout,类似于我执行textview的方式。然后,您需要创建一个新的文本视图。如果你觉得你真的想学习如何做到这一点,那就更难了,只要问一下。
答案 1 :(得分:0)
这是使用代码而不是XML动态创建布局的方法。
首先,您应该在xml中为您的LinearLayout指定一个id:
<LinearLayout android:id="@+id/myLayout">
然后在你的代码中:
LinearLayout myLayout = (LinearLayout) findViewById(R.id.myLayout);
if (variable.contentEquals("yes")) {
TextView jacuzzi = new TextView(this);
jacuzzi.setText("jacuzzi");
myLayout.addView(jacuzzi);
}
但是,请避免使用字符串并将其设置为yes。请改用布尔值。