作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 Android 开发的新手,希望能得到一些帮助,在 Android 上创建一个简单的布局。此布局将在 ListView 中使用。
这就是我想要的外观: 这是我得到的(不要笑):
文本的底部行与顶部重叠,数字应位于右侧(图像的左侧)并且不同行中的图像应对齐。
(是的,我知道颜色很难看。)
这是我的 xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:id="@+id/thelayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="6dip"
xmlns:android="http://schemas.android.com/apk/res/android">
<RelativeLayout
android:id="@+id/widget375"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="5">
<TextView
android:id="@+id/txt2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="14pt"
android:layout_alignParentTop="true"
android:layout_toRightOf="@+id/txt1" />
<TextView
android:id="@+id/txt3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/txt1"
android:layout_alignParentLeft="true" />
<TextView
android:id="@+id/txt1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="14pt"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true" />
</RelativeLayout>
<ImageView
android:id="@+id/theicon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1" />
</LinearLayout>
谢谢!
最佳答案
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:orientation="horizontal" >
<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" >
<TextView
android:id="@+id/textView2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="abc"
android:textSize="14pt" />
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="14pt"
android:text="abc" />
</LinearLayout>
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginLeft="10dp"
android:gravity="center" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
关于android - 创建安卓布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22189437/
在安全组中,我添加的每个入站端口都添加了两条规则,一条为 0.0.0.0/0,另一条为::/0。它们分别代表什么意思? 最佳答案 The default route in Internet Proto
我是一名优秀的程序员,十分优秀!