㈠ android中圖片和文字怎樣才能在一行
沒錯,線性布局,貼段我寫的代碼給你吧。。可以實現,比較簡陋~哈哈:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="聲音模式:"/>
<ImageView
android:id="@+id/myImage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
主要是horizontal~嵌套在垂直的線性布局裡面。這樣就可以接著在下面嵌套個水平的線性布局