gpt4 book ai didi

java - Android ImageButton 构建成功但不显示

转载 作者:搜寻专家 更新时间:2023-11-01 08:01:09 26 4
gpt4 key购买 nike

我正在尝试创建一个简单的应用程序,当单击 ImageButton 时,屏幕上会显示一条消息。我正在关注本教程: http://www.mkyong.com/android/android-imagebutton-example/

编辑:我的整个 XML 文件如下:

<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"
tools:context=".MainActivity"
android:orientation="horizontal">

<TextView
android:textSize = "30sp"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity = "center"
android:text="@string/user_name" />
<ImageButton
android:id="@+id/imageButton1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/me2" />
</LinearLayout>

并将图片 me2.png 放在我的 res/drawable-hdpi 文件夹中。

在我的 mainActivity.java 文件中我有:

ImageButton imageButton;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

addListenerOnButton();

}

public void addListenerOnButton() {

imageButton = (ImageButton) findViewById(R.id.imageButton1);

imageButton.setOnClickListener(new Button.OnClickListener() {

@Override
public void onClick(View arg0) {

Toast.makeText(MainActivity.this,
"ImageButton is clicked!", Toast.LENGTH_SHORT).show();

}

});

}

但是,当我在我的设备(而不是模拟器)上运行我的应用程序时,它所做的只是显示我已经实现的我的名字的字符串,而将页面/布局的其余部分留空。

有什么想法吗?一切构建成功。谢谢!

最佳答案

问题是你的方向是水平的:

android:orientation="horizontal"

但是你的 TextView 占据了整个空间:

android:layout_width="fill_parent"

因此,您的 ImageView 位于设备屏幕的“右侧”。将方向切换为垂直:

android:orientation="vertical"

你会看到的。干杯!

关于java - Android ImageButton 构建成功但不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21079636/

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