所以基本上我想显示有关酒店/餐厅/俱乐部/其他的信息。我创建了这个布局XML文件: .XML:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<ImageView
android:id="@+id/picture"
android:layout_width="80dp"
android:layout_height="80dp"
android:contentDescription="@string/image"
android:paddingLeft="10dp"
android:paddingRight="10dp" />
<TextView
android:id="@+id/description"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/picture"
android:paddingBottom="10dp"
android:textColor="#000000"
android:textSize="16sp"
android:textSTyle="bold" />
<TextView
android:id="@+id/description_real"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/description"
android:paddingLeft="10dp"
android:textColor="#666666"
android:textSize="14sp" />
<TextView
android:id="@+id/openingtimes"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/description_real"
android:paddingBottom="10dp"
android:textColor="#000000"
android:textSize="16sp"
android:textSTyle="bold" />
<TextView
android:id="@+id/openingtimes_real"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/openingtimes"
android:paddingLeft="10dp"
android:textColor="#666666"
android:textSize="14sp" />
<TextView
android:id="@+id/prices"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/openingtimes_real"
android:paddingBottom="10dp"
android:textColor="#000000"
android:textSize="16sp"
android:textSTyle="bold" />
<TextView
android:id="@+id/prices_real"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/prices"
android:paddingLeft="10dp"
android:textColor="#666666"
android:textSize="14sp" />
</RelativeLayout>
我不想收到必须从互联网上显示的文字,但想要在活动本身中定义它。如何创建此活动以便我可以在XML中定义的布局中显示文本? (很简单,没有什么必须是可点击的,只是文字)
答案 0 :(得分:1)
看看这个“Building your First App”教程。它非常简单明了。它具有创建新活动,定义布局和使用资源(如字符串)的所有基础知识。这应该足以实现您所描述的内容。