0

我需要创建文本视图(或类似的),我是新手,我需要你的帮助。这些是从网络服务接收的参数

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的新手

在这里我把我的 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>
4

2 回答 2

1

如果不需要,最好创建它们并删除它们,而不是相反,如下所示。

首先

boolean jacuzzi = true;
boolean estacionamiento = false;  
boolean peli = true; 
boolean cable = true;  
boolean roomservice = 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);}

这读取如果按摩浴缸是假的然后使 TextView 消失。你也可以使用

if(!jacuzzi)
{tv.setVisibility(View.GONE);}

因为他们的意思是一样的。

否则对于动态编码,这要困难得多。您需要通过 findViewById 引用您的线性布局,类似于我执行 textview 的方式。然后你需要创建一个新的文本视图。如果你觉得你真的想学习如何做到这一点,那就更难了,但只要问。

于 2012-12-09T02:33:20.933 回答
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);
}

但是避免使用字符串并将它们设置为是。请改用布尔值。

于 2012-12-09T02:28:15.877 回答