Android中的图像,文本/文本和图像

时间:2016-06-22 17:54:24

标签: android xml

我想尝试以下设计。请考虑它是一个列表项。

enter image description here

但是我的以下设计,它并没有给我那个设计。文本视图出现在左图的顶部。

Process process = Runtime.getRuntime().exec("logcat -<flags>");
BufferedReader bufferedReader = new BufferedReader(
                    new InputStreamReader(process.getInputStream()));

String line;
while ((line = bufferedReader.readLine()) != null) {
    //code here
}

enter image description here

4 个答案:

答案 0 :(得分:0)

使用RelativeLayout而不是LinearLayout,而对于TextViews,请使用:

android:layout_toRightOf =“@ id / userimage”和

android:layout_alignTop =“@ id / userimage”或

机器人:layout_alignBottom = “@ ID / userimage”

答案 1 :(得分:0)

你走了:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#FFFFFF"
android:orientation="horizontal">

<ImageView
    android:id="@+id/userimage"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentStart="true"
    android:layout_centerVertical="true"
    android:src="@drawable/ic_person_black_24dp"
    tools:background="@mipmap/ic_launcher" />

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_alignBottom="@id/userimage"
    android:layout_toEndOf="@id/userimage"
    android:layout_toStartOf="@id/arrow"
    android:orientation="vertical">

    <TextView
        android:id="@+id/username"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:gravity="center|start"
        tools:text="Text1" />

    <TextView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:gravity="center|start"
        tools:text="Text2" />
</LinearLayout>

<ImageView
    android:id="@+id/arrow"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentEnd="true"
    android:layout_centerVertical="true"
    android:src="@drawable/ic_keyboard_arrow_right_black"
    tools:background="@mipmap/ic_launcher" />
</RelativeLayout>

如果你有时间,尝试使用不同的布局,它将在未来帮助你。

修改: 更好的解决方案,使TextViews居中。

答案 2 :(得分:0)

试试这个:

def check(wikitext):
    redirect_title = u''.join(wikitext.values())
    redirect_title = re.findall(u'\[\[[\S ]+\]\]', redirect_title)[0]
    redirect_title = redirect_title.strip(u'[]')
    return redirect_title

我使用了一些你没有使用的<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="wrap_content" android:padding="6dip" > <ImageView android:id="@+id/userimage" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_alignParentBottom="true" android:layout_alignParentTop="true" android:layout_marginRight="6dip" android:contentDescription="TODO" android:src="@drawable/ic_person_black_24dp" /> <ImageView android:id="@+id/icon" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_alignParentBottom="true" android:layout_alignParentRight="true" android:layout_alignParentTop="true" android:layout_marginLeft="6dip" android:contentDescription="TODO" android:src="@drawable/ic_keyboard_arrow_right_black" /> <TextView android:id="@+id/username" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="1" android:layout_above="@id/secondline" android:layout_alignParentTop="true" android:layout_toRightOf="@id/userimage" android:layout_toLeftOf="@id/icon" android:singleLine="true" android:gravity="center_vertical" android:text="Example username" android:textSize="16sp" /> <TextView android:id="@+id/secondline" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_weight="1" android:layout_alignParentRight="true" android:layout_toRightOf="@id/userimage" android:layout_toLeftOf="@id/icon" android:singleLine="true" android:text="Description" android:textSize="12sp" /> </RelativeLayout> 尺寸,并添加了一些其他东西,但我想你可以改变它以便它适合你的愿望。我尝试使用与您相同的名称。总的来说,如果你稍微调整它,它应该可以工作。

答案 3 :(得分:0)

你在text2中的问题使用它,它会起作用

<TextView
android:text="Text2"
android:layout_below="@id/username"
android:layout_toRightOf="@id/userimage"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />