gpt4 book ai didi

Android - 运行时居中图像按钮

转载 作者:行者123 更新时间:2023-11-29 22:19:29 25 4
gpt4 key购买 nike

我在 xml 文件中定义了一个图像按钮。在运行时,我想让它可见(可以使用 setVisibility(),所以这没问题)但我也想让它水平居中,就像 XML 属性 android:layout_gravity="center_horizo​​ntal”。但是,您如何在运行时使用 javacode 执行此操作?我找不到任何方法来以编程方式设置图像按钮的重力。

编辑:我在 xml 文件中使用 RelativeLayout

EDIT2:XML 代码

<?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" android:gravity="center_horizontal">
<TextView android:text="Unknown" android:layout_width="wrap_content" android:id="@+id/screen_p2pcall_status_text" android:textAppearance="?android:attr/textAppearanceLarge" android:layout_height="wrap_content" android:layout_gravity="center_horizontal" android:layout_centerHorizontal="true"></TextView>

<ImageView android:layout_width="wrap_content" android:src="@drawable/android_avatar_big" android:id="@+id/screen_p2pcall_android" android:layout_height="wrap_content" android:layout_below="@+id/screen_p2pcall_status_icon" android:layout_centerHorizontal="true" android:layout_marginTop="36dp"></ImageView>

<ImageView android:layout_width="wrap_content" android:src="@android:drawable/presence_invisible" android:id="@+id/screen_p2pcall_status_icon" android:layout_height="wrap_content" android:layout_below="@+id/screen_p2pcall_status_text" android:layout_centerHorizontal="true"></ImageView>

<TextView android:text="Unknown" android:id="@+id/screen_p2pcall_peer" android:layout_width="wrap_content" android:textAppearance="?android:attr/textAppearanceMedium" android:layout_height="wrap_content" android:layout_below="@+id/screen_p2pcall_android" android:layout_centerHorizontal="true"></TextView>

<ImageButton android:layout_width="120dp" android:id="@+id/screen_p2pcall_hangup" android:src="@drawable/phone_hang_up_48" android:layout_height="50dp" android:layout_below="@+id/screen_p2pcall_peer" android:layout_toRightOf="@+id/screen_p2pcall_status_icon" android:layout_marginTop="18dp"></ImageButton>

<ImageButton android:layout_width="120dp" android:id="@+id/screen_p2pcall_answer" android:src="@android:drawable/sym_action_call" android:layout_height="50dp" android:layout_alignTop="@+id/screen_p2pcall_hangup" android:layout_toLeftOf="@+id/screen_p2pcall_hangup"></ImageButton>

</RelativeLayout>

Java 代码,我想在运行时将 @+id/screen_p2pcall_hangup 水平居中:

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.screen_p2pcall);
final ImageButton hangup = (ImageButton)findViewById(R.id.screen_p2pcall_hangup);
// ????
}

谢谢

最佳答案

当您使用相对布局时,您应该向布局参数添加规则以使 subview 居中。对于相对布局参数对象,您应该添加这样的规则

rlp.addRule(RelativeLayout.CENTER_HORIZONTAL,RelativeLayout.TRUE);

可以根据您的要求添加其他规则。重力在相对布局上是不可能的。

我假设这是 Activity 的整个布局 xml。如果是这样,这应该有效,

ImageButton hangupButton = (ImageButton)findViewById(R.id.screen_p2pcall_hangup);
int width = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP,
(float) 120, getResources().getDisplayMetrics());
int height = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP,
(float) 50, getResources().getDisplayMetrics());
RelativeLayout.LayoutParams rlp = new RelativeLayout.LayoutParams(width,height);
rlp.addRule(RelativeLayout.CENTER_HORIZONTAL,RelativeLayout.TRUE);
hangupButton.setLayoutParams(rlp);
hangupButton.setVisibility(RelativeLayout.VISIBLE);

编辑:代码解决方案

我已经对您的 xml 代码进行了一些编辑,以便在我的项目中进行测试。使用了一些不可用的属性,例如“方向”。它仅适用于线性布局。下次当您发布问题时,请将您的 xml 分成下一行,这样我们就不需要左右滚动来阅读整个内容。

布局xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent">
<TextView android:text="Unknown" android:layout_width="wrap_content"
android:id="@+id/screen_p2pcall_status_text"
android:textAppearance="?android:attr/textAppearanceLarge"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"/>
<ImageView android:layout_width="wrap_content"
android:src="@drawable/icon"
android:id="@+id/screen_p2pcall_android"
android:layout_height="wrap_content"
android:layout_below="@+id/screen_p2pcall_status_icon"
android:layout_centerHorizontal="true"
android:layout_marginTop="36dp"/>
<ImageView android:layout_width="wrap_content"
android:src="@android:drawable/presence_invisible"
android:id="@+id/screen_p2pcall_status_icon"
android:layout_height="wrap_content"
android:layout_below="@+id/screen_p2pcall_status_text"
android:layout_centerHorizontal="true"/>
<TextView android:text="Unknown" android:id="@+id/screen_p2pcall_peer"
android:layout_width="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_height="wrap_content"
android:layout_below="@+id/screen_p2pcall_android"
android:layout_centerHorizontal="true"/>
<ImageButton android:layout_width="120dp"
android:id="@+id/screen_p2pcall_hangup"
android:src="@android:drawable/sym_call_missed"
android:layout_height="50dp"
android:layout_below="@+id/screen_p2pcall_peer"
android:layout_toRightOf="@+id/screen_p2pcall_status_icon"
android:layout_marginTop="18dp"/>
<ImageButton android:layout_width="120dp"
android:id="@+id/screen_p2pcall_answer"
android:src="@android:drawable/sym_action_call"
android:layout_height="50dp"
android:layout_alignTop="@+id/screen_p2pcall_hangup"
android:layout_toLeftOf="@+id/screen_p2pcall_hangup"/>
</RelativeLayout>

现在我在我的 onCreate 方法中使用了这段代码,它隐藏了左下按钮并水平居中了右下按钮

ImageButton hangupButton = (ImageButton)findViewById(R.id.screen_p2pcall_hangup);
int width = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP,
(float) 120, getResources().getDisplayMetrics());
int height = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP,
(float) 50, getResources().getDisplayMetrics());
int marginTop = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP,
(float) 18, getResources().getDisplayMetrics());
RelativeLayout.LayoutParams rlp = new RelativeLayout.LayoutParams(width,height);
rlp.addRule(RelativeLayout.CENTER_HORIZONTAL,RelativeLayout.TRUE);
rlp.addRule(RelativeLayout.BELOW, R.id.screen_p2pcall_peer);
rlp.topMargin = marginTop;

hangupButton.setLayoutParams(rlp);
((ImageButton)findViewById(R.id.screen_p2pcall_answer))
.setVisibility(RelativeLayout.INVISIBLE);

这应该有效。

关于Android - 运行时居中图像按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7634385/

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