简体   繁体   English

以编程方式设置位图时,如何让 imageView 和 textview 填充布局?

[英]How do I get an imageView and textview to both fill the layout when setting bitmap programmatically?

What I want is for qrcodetext to fit and display all the text in qrcode_layout and have qrimageView to fill the rest of qrcode_layout ?我想要的是qrcodetext ,以适应并显示在所有文本qrcode_layout并有qrimageView填补其余qrcode_layout But my layout below has the entire qrimageView cover qrcode_layout .但是我下面的布局有整个qrimageView覆盖qrcode_layout I tried a bunch of other variations but without success.我尝试了许多其他变体,但没有成功。

Here is what it looks like.这是它的样子。

在此处输入图片说明

Here is what I want it to look like.这就是我想要的样子。

在此处输入图片说明

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

    <LinearLayout
        android:layout_height="match_parent"
        android:layout_width="match_parent"
        android:orientation="vertical"
        android:id="@+id/qrcodelayout">

        <LinearLayout
            android:layout_height="wrap_content"
            android:layout_width="wrap_content"
            android:orientation="vertical">
            <ImageView
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:id="@+id/qrimageView"
                android:layout_gravity="center_horizontal"
                android:layout_marginTop="8dp" />

        </LinearLayout>

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/qrcodetext"
            android:gravity="center"
            android:layout_gravity="center_horizontal"
            android:layout_marginTop="4dp" />

    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>
    </LinearLayout>

</RelativeLayout>

I think what i have understand you want is below: Plz check and tell me:我想我明白你想要的是下面:请检查并告诉我:

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

    <LinearLayout
        android:layout_height="match_parent"
        android:layout_width="match_parent"
        android:orientation="vertical"
        android:id="@+id/qrcodelayout">
        <TextView
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:id="@+id/qrcodetext"
            android:gravity="center"            
            android:layout_weight="1"
            android:layout_gravity="center_horizontal"
            android:layout_marginTop="4dp" />
        <LinearLayout
            android:layout_height="match_parent"
            android:layout_width="match_parent"
            android:orientation="vertical"
            android:layout_weight="1">
            <ImageView
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:id="@+id/qrimageView"                
                android:layout_gravity="center_horizontal"
                android:layout_marginTop="8dp" />

        </LinearLayout>



    </LinearLayout>

    <!--<LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>
    </LinearLayout>-->

</RelativeLayout>

Use following code.使用以下代码。 Align your textview to bottom and then align your Qrcode Image above text:将你的 textview 对齐到底部,然后将你的 Qrcode Image 对齐到文本上方:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">        
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/qrcodetext"
        android:gravity="center"
        android:layout_alignParentBottom="true"
        android:layout_marginTop="4dp" />        
    <ImageView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/qrimageView"
        android:layout_gravity="center_horizontal"
        android:layout_above="@id/qrcodetext"
        android:layout_alignParentTop="true"
        android:layout_marginTop="8dp" />
</RelativeLayout>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM