我有佈局xml文件:如何在同一行中的Android
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:id="@+id/titlename"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/HostName"
android:layout_weight="0"
/>
<TextView
android:id="@+id/name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0"
/>
</LinearLayout>
當我執行上述一個,我的輸出是象下面這樣:
但我的要求是讓我的輸出如下:
| text1: text2 |
任何人都可以幫助嗎?
你有沒有嘗試android:layout_weight =「0.5」兩個文本視圖?這會給兩個半寬? – 2013-04-23 18:09:44