在Android中的LinearLayout中设置两个TextView和一个ImageView

时间:2013-12-10 07:50:11

标签: android android-layout

我有

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#ffffff"
    android:orientation="vertical" >

    <LinearLayout   
      <com.google.android.youtube.player.YouTubePlayerView>
      <**Add textView1 here**> 
      <ImageView>
      <**Add textView2 here**>
      <ScrollView
           <LinearLayout
             <ImageView>
             <ListView>
      >
    >
 >

我正在尝试将它们添加到youtube播放器textView1,imageView&amp; textView2水平对齐。我尝试使用RelativeLayout而不是LinearLayout但是没有显示这三个小部件中的任何一个。

1 个答案:

答案 0 :(得分:1)

你可以尝试这样做(在工作中缺少合适的编辑器,抱歉):

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" >
        <com.google.android.youtube.player.YouTubePlayerView>
        <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="horizontal" >
            <**Add textView1 here**> 
            <ImageView>
            <**Add textView2 here**>
        </LinearLayout>
</LinearLayout>

我们的想法是添加一个水平方向的LinearLayout,并将视图放在里面。