-4

我是android开发的新手,我想在android中制作一个这样的屏幕:

任何人都可以帮助我这样做:

  1. ImageView(从左、右和顶部留出 20px 的空间)。
  2. 空间。
  3. 文本视图。
  4. 空间。
  5. 文本视图1。
  6. 空间。
  7. 文本视图 2:文本视图 3。
  8. 空间。

. . ……

如果 imageView 不存在 textview 应该出现并且 imageview 应该隐藏。

4

1 回答 1

0

例子:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/ll"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="5dip"
        android:layout_marginLeft="20dip"
        android:layout_marginRight="20dip"
        android:layout_marginTop="20dip" 
        android:src="@drawable/img"/>

    <TextView 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="5dip"
        android:layout_marginLeft="2dip"
        android:layout_marginRight="2dip"
        android:layout_marginTop="5dip" 
        android:text="Txt1"/>
    <TextView 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="5dip"
        android:layout_marginLeft="2dip"
        android:layout_marginRight="2dip"
        android:layout_marginTop="5dip" 
        android:text="Txt2"/>
    <TextView 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="5dip"
        android:layout_marginLeft="2dip"
        android:layout_marginRight="2dip"
        android:layout_marginTop="5dip" 
        android:text="Txt3"/>

</LinearLayout>
于 2012-12-27T11:07:12.870 回答