这个问题可能更早被问到,但我真的不知道如何搜索它。
我想要实现的是这样的。
city : some city
state : some state
pincode : some pin code
phone no : some phone number
城市:是一种文本视图,某些城市是第二种文本视图。两者都是线性布局。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView android:text="City : "
android:textSize="15sp"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
/>
<TextView android:text="Some city"
android:textSize="15sp"
android:id="@+id/lblPermanentCity"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
/>
</LinearLayout>
任何帮助将不胜感激