LinearLayout在LinearLayout全宽下?

时间:2015-05-06 18:07:58

标签: android xml android-layout android-linearlayout

我有一个ImageView和一个TextView,这是我的Android UI中唯一的项目。目前TextView与ImageView位于同一个LinearLayout中,因此文本有时会运行到2行。我想在自己的行上获取文本,使用父元素的整个宽度,因此它将是屏幕的整个宽度。到目前为止,我所尝试过的所有内容都将ImageView移动到窗口外面或使其非常小。

<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:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:weightSum="4"
    android:gravity="center"
    tools:context=".MainActivity"
    android:baselineAligned="false">

    <LinearLayout
        android:layout_width="0dp"
        android:orientation="vertical"
        android:layout_weight="2"
        android:gravity="center_vertical"
        android:layout_height="wrap_content">

        <ImageView
            android:id="@+id/activity_main_imageview_gototags"
            android:src="@drawable/img_main_gototags"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:scaleType="centerCrop"
            android:onClick="imageViewGoToTagsOnClickOnClick"
            android:adjustViewBounds="true"/>

        <TextView
            android:id="@+id/activity_main_textview_tagline"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/activity_main_textview_tagline"
            android:textColor="@color/dark_blue"
            android:gravity="center"
            android:textSize="30sp"
            android:layout_gravity="center_horizontal" />
    </LinearLayout>
</LinearLayout>

2 个答案:

答案 0 :(得分:2)

可能这就是你想要的

<?xml version="1.0" encoding="utf-8"?>
<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"
android:gravity="center"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >


    <LinearLayout 
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <View
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="0.5" />

    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1" >


        <ImageView
            android:id="@+id/activity_main_imageview_gototags"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:adjustViewBounds="true"
            android:onClick="imageViewGoToTagsOnClickOnClick"
            android:scaleType="centerCrop"
            android:src="@drawable/ic_launcher" />
    </LinearLayout>

    <View
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="0.5" />
    </LinearLayout>

<TextView
    android:id="@+id/activity_main_textview_tagline"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:maxLines="1"
    android:singleLine="true"
    android:gravity="center"
    android:text="lfhjdhkjfhkjdhkjfhkdhkjfhdkshfkhskahdfkjdhkhkjfhdk"
    android:textColor="@android:color/holo_blue_bright"
    android:textSize="30sp" />

</LinearLayout>

我希望它有所帮助。如果没有,请告诉我。

答案 1 :(得分:0)

不要让LinearLayout的父ImageView的宽度0dp改为match_parent,而TextViewandroid:maxLines还有文本视图android:ellipsize上的sa属性,它对应于最多可以行的行数,将其设置为1,如果需要截断,还可以在文本上使用<a href="#contact"> <div class="button"> <div class="button-text contactme"> Contact me </div> </div> </a> <div class="emailcontainer"> contact@website.com </div> 图。