gpt4 book ai didi

android - 背景图片以错误的方式出现

转载 作者:行者123 更新时间:2023-11-29 14:50:49 26 4
gpt4 key购买 nike

我刚刚完成了在登录表单背景拍摄图像的代码。

代码如下:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/scrollView1"
android:layout_width="fill_parent"
android:layout_height="510dip"
android:layout_marginTop="10dip"
android:background="#DDDDDD" >

<LinearLayout
android:id="@+id/tv_un"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="10pt"
android:textColor="#444444"
android:orientation="vertical" >


<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:src="@drawable/capture"/>


<TextView
android:id="@+id/view_username"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/view_username" />

<EditText
style="@style/CodeFont"
android:background="@android:drawable/editbox_background"
android:ems="10"
android:inputType="textPersonName" >

<requestFocus />
</EditText>

<TextView
android:id="@+id/view_password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="@string/view_password" />

<EditText
android:background="@android:drawable/editbox_background"
android:id="@+id/txt_password"
style="@style/CodeFont"
android:ems="10"
android:text="@string/view_password"
android:inputType="textPassword" />

<Button
android:id="@+id/btn_login"
android:layout_width="100dip"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="@string/btn_login" />

<TextView
android:id="@+id/link_to_register"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:gravity="center"
android:text="@string/link_to_register" />

</LinearLayout>
</ScrollView>

应用看起来像:

enter image description here

正如我们所看到的,图像已经出现在控件之上。

我想要全屏显示图像并控制图像。

我怎样才能拥有它?

我必须对当前代码进行哪些更改。

请帮帮我。

编辑:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/scrollView1"
android:layout_width="fill_parent"
android:layout_height="510dip"
android:layout_marginTop="10dip"
android:background="#DDDDDD" >

<LinearLayout
android:id="@+id/tv_un"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="10pt"
android:textColor="#444444"
android:orientation="vertical"
android:src="@drawable/capture" >

最佳答案

android:src="@drawable/capture"

到线性布局...

是的,尝试将 LinearLayout 的宽度和高度设置为 match_parent

使用这个:

  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/scrollView1"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_marginTop="10dip"
android:background="@drawable/ic_launcher"
android:background="#DDDDDD" >

<ScrollView
android:id="@+id/scrollView2"
android:layout_width="fill_parent"
android:layout_height="match_parent" >

<LinearLayout
android:id="@+id/tv_un"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:textColor="#444444"
android:textSize="10pt" >

<TextView
android:id="@+id/view_username"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/view_username" />

<EditText
style="@style/CodeFont"
android:background="@android:drawable/editbox_background"
android:ems="10"
android:inputType="textPersonName" >

<requestFocus />
</EditText>

<TextView
android:id="@+id/view_password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="@string/view_password" />

<EditText
android:id="@+id/txt_password"
android:background="@android:drawable/editbox_background"
android:ems="10"
android:inputType="textPassword"
android:text="@string/view_password" />

<Button
android:id="@+id/btn_login"
android:layout_width="100dip"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="@string/btn_login" />

<TextView
android:id="@+id/link_to_register"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:gravity="center"
android:text="@string/link_to_register" />
</LinearLayout>
</ScrollView>

</LinearLayout>

关于android - 背景图片以错误的方式出现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18588501/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com