如何制作类似此屏幕截图的布局,并在花卉图像的左侧和右侧显示文字:
这是我到目前为止所尝试的:
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/bitmapstrech"
android:orientation="horizontal" >
<ImageView
android:id="@+id/btnback"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="5dp"
android:paddingTop="15dp"
android:src="@drawable/back" >
</ImageView>
<ImageView
android:id="@+id/bitmap"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:layout_marginRight="5dp"
android:paddingTop="5dp"
android:scaleType="centerCrop"
android:src="@drawable/logostar" >
</ImageView>
<TextView
android:id="@+id/test_button_text2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/bitmap"
android:paddingLeft="10dp"
android:text="San Diego Unified"
android:textColor="#000000"
android:textSize="20sp" >
</TextView>
<TextView
android:id="@+id/test_button_text1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/test_button_text2"
android:paddingBottom="10dp"
android:paddingLeft="10dp"
android:text="SCHOOL DISTRICT"
android:textColor="#000000"
android:textSize="18sp"
android:textStyle="bold" >
</TextView>
<ImageView
android:id="@+id/test_button_image2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:paddingBottom="5dp"
android:paddingLeft="5dp"
android:paddingRight="15dp"
android:paddingTop="10dp"
android:src="@drawable/options1" />
</RelativeLayout>
答案 0 :(得分:2)
嗯,你需要添加一个元素来让这个东西像图片一样工作。
尝试此层次结构:
答案 1 :(得分:1)
你可以用这个:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".StartingPoint" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#ff0000" >
<Button
android:id="@+id/button1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="2"
android:text="Button" />
<ImageView
android:id="@+id/imageView1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_weight="1"
android:src="@drawable/ic_launcher" />
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="3"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Large Text"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView" />
</LinearLayout>
<Button
android:id="@+id/button2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="2"
android:text="Button" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
答案 2 :(得分:1)
试试这个..
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#696969"
android:background="@drawable/bitmapstrech" >
<ImageView
android:id="@+id/btnback"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/back"
android:layout_alignParentLeft="true"
>
</ImageView>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_centerHorizontal="true"
>
<ImageView
android:id="@+id/bitmap"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="centerCrop"
android:src="@drawable/logostar" >
</ImageView>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_gravity="center"
android:orientation="vertical">
<TextView
android:id="@+id/test_button_text2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="San Diego Unified"
android:textColor="#000000"
android:textSize="20dp" >
</TextView>
<TextView
android:id="@+id/test_button_text1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="SCHOOL DISTRICT"
android:textColor="#000000"
android:textSize="18dp"
android:textStyle="bold" >
</TextView>
</LinearLayout>
</LinearLayout>
<ImageView
android:id="@+id/test_button_image2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:src="@drawable/options1" />
</RelativeLayout>