- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我是 Android 编程的新手,我被困在一个简单的问题上。
我有一个带有一些按钮和 Logo 的基本主页。我使用 LinearLayout
和 layout_weight
属性来分配所有组件。
这是我的代码:
<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:orientation="vertical"
tools:context="iut.project.findmeapp.MainActivity" >
<ImageView
android:id="@+id/activityMainAppLogoIv"
android:layout_width="match_parent"
android:layout_height="@dimen/null_height"
android:contentDescription="@string/description_logo"
android:layout_weight="1"
android:maxHeight="@dimen/img_maxHeight"
android:layout_margin="@dimen/img_margin"
android:src="@drawable/ic_launcher" />
<Button
android:id="@+id/activityMainMyEventsBtn"
android:layout_width="match_parent"
android:layout_height="@dimen/null_height"
android:layout_marginTop="@dimen/button_margin_vertical"
android:layout_marginBottom="@dimen/button_margin_vertical"
android:layout_weight="1"
android:text="@string/my_events" />
<Button
android:id="@+id/activityMainMyContactsBtn"
android:layout_width="match_parent"
android:layout_height="@dimen/null_height"
android:layout_marginTop="@dimen/button_margin_vertical"
android:layout_marginBottom="@dimen/button_margin_vertical"
android:layout_weight="1"
android:text="@string/my_contacts" />
<Button
android:id="@+id/activityMainLastNotifBtn"
android:layout_width="match_parent"
android:layout_height="@dimen/null_height"
android:layout_marginTop="@dimen/button_margin_vertical"
android:layout_marginBottom="@dimen/button_margin_vertical"
android:layout_weight="1"
android:text="@string/last_notification" />
<TextView
android:id="@+id/activityMainCopyrightTv"
android:layout_width="match_parent"
android:layout_height="@dimen/null_height"
android:gravity="center"
android:layout_weight="0.5"
android:layout_margin="@dimen/tw_margin"
android:text="@string/copyright" />
</LinearLayout>
(注意:@dimen/null_height
是 0dp
)
我的问题是我希望图像随屏幕尺寸缩放,但我不希望它像素化:我已将最大高度设置为 200 像素。
以下几行似乎不起作用,因为图像没有限制并且完全忽略了 maxHeight
属性。
android:layout_weight="1"
android:maxHeight="@dimen/img_maxHeight"
实际上它看起来像这样(示例图片):
它工作得很好,但是当我将 maxHeight
设置为 10px
时,没有任何变化。
我怎样才能做到这一点?我非常喜欢使用 LinearLayout
。
提前谢谢你。
最佳答案
感谢 Evripidis Drakos 为我指明了正确的方向。只需要检查以仅在实际需要时设置最大高度。
public class MaxHeightImageView extends ImageView {
public static final int MAX_HEIGHT_NOT_SET = -1;
public static final int INDEX_MAX_HEIGHT = 0;
private static final int[] STYLE_ATTRIBUTE_ARRAY = {
android.R.attr.maxHeight,
};
private int myMaxHeight;
public MaxHeightImageView(Context context) {
super(context);
init(context, null);
}
public MaxHeightImageView(Context context, AttributeSet attrs) {
super(context, attrs);
init(context, attrs);
}
public MaxHeightImageView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
init(context, attrs);
}
@RequiresApi(api = Build.VERSION_CODES.LOLLIPOP)
public MaxHeightImageView(Context context, AttributeSet attrs, int defStyleAttr,
int defStyleRes) {
super(context, attrs, defStyleAttr, defStyleRes);
init(context, attrs);
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int size = MeasureSpec.getSize(heightMeasureSpec);
if(MAX_HEIGHT_NOT_SET != myMaxHeight && size > myMaxHeight) {
heightMeasureSpec = MeasureSpec.makeMeasureSpec(myMaxHeight, MeasureSpec.AT_MOST);
}
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
}
private void init(Context context, AttributeSet attrs) {
if(context != null) {
TypedArray ta = context.obtainStyledAttributes(attrs,
STYLE_ATTRIBUTE_ARRAY);
myMaxHeight = ta.getDimensionPixelSize(INDEX_MAX_HEIGHT, 0);
} else {
myMaxHeight = MAX_HEIGHT_NOT_SET;
}
}
}
关于android - 结合 layout_weight 和 maxHeight,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29695701/
这个。如果最后一个布局有 .6 (60%),我不明白为什么第一个布局看起来比第二个布局大。 最佳答案 @Miguel Barra 适用于此 andr
也许我误解了 layout_weight 参数,但我不明白为什么这样的东西不起作用...... 我在 LinearLayout 中有三个或更多 TextView 。我想将它们放在具有百分比
我研究了另一个 stackoverflow 问题//答案,发现 layout_weight 的工作定义是“此属性将“重要性”值分配给 View ,并允许它扩展以填充父 View 中的任何剩余空间”(来
我有 3 张图片的布局。我给他们每个人分配了权重来控制他们分配的宽度。 问题是权重使图像的所有宽度可点击,当我希望可点击区域只有图片时,如何实现? 这是布局的相关部分:
我的应用应该是这样的: 这应该是它的外观,尽管我之前使用它的方式并不能很好地缩放。所以这就是我这样做的原因,但它给我带来了很多问题。 但即使是看似相同的设置,第二排也会占据整个房间,看起来像这样: 有
我正在尝试实现一个将分为 2 个子布局的布局。我希望左侧布局占屏幕的 1/4,而右侧布局占屏幕的剩余 3/4。我的目标如下:如果用户按下按钮,则左侧布局将被隐藏,右侧布局将占据整个屏幕(不确定这是否可
我想要一个 TableRow 中的 TextView 和 EditText,并且我希望 EditText 的宽度比 TextView 大两倍,所以我把它放在 TextView 区域: android:
我读过很多问题,说问题出在 layout_width = 0dip 但我试过了,但无法实现。 我有这个持有人: 还有这个部分: 但我的 View 按钮显示仍然显示在左侧......有没有一种方
在我的应用程序中,我有一个如图所示的 Activity (图 #1)。在 TableLayout 中,我将构建一个包含 n 行和 6 列的表。我构建表格插入,就像列表一样,n LinearLayout
在下面的布局 xml 中,我创建了一个带有两个 subview 的水平 LinearLayout。 LinearLayout 子项应该动态拉伸(stretch)其宽度,ImageView 的宽度取决于
基本上我有一个线性布局中的 ImageView,当我的每个布局上设置的权重被调整大小时,布局中的 ImageView 也是如此。问题是 - 只有实际改变宽度的高度保持不变。 为什么会出现问题?我有 c
在代码版本 1 中按钮1的高度是按钮2的5倍 在代码版本 2 中按钮2的高度是按钮1的5倍 当 android:
我正在尝试制作一个计算器应用程序。我有一个外部线性布局,它是垂直方向,然后有嵌套的线性布局,它具有水平方向,我的按钮将在其中放置。只有最后一个嵌套的线性布局没有正确调整按钮的宽度,因为我希望“0”按钮
免责声明:AFAIK 这个问题目前还没有针对 XAMARIN ANDROID 的答案。 Android/Java已多次回答. 我的问题是我没有将 layout_weight 作为参数的 GridLay
为什么下面的 list 只显示第二个 TextView(红色)? 我知道如果我设置 android:layout_height="0px" 它只会显示第一个 TextView(
我正在处理一个包含 5 个按钮的 fragment 。当它在像平板电脑这样的大屏幕上时,我使用一个将所有 5 个按钮放在顶部的 fragment 。我将它们的所有 layout_width 设置为 1
我正在尝试使用 layout_weight 构建一个 android 布局以适应所有尺寸的设备,但我在理解它的行为时遇到了一些困难。 我注意到更改 layout_width/layout_height
当我以编程方式设置 TableRow layout_weight 时遇到问题。以下代码是在 table_body 元素中扩展的 TableLayout: 我只想在 TableLayout 中显示
我有一个简单的问题:如何以编程方式获取 layout_weight?我看到很多题目,有些Layoute设置layout_weight的时候,但是怎么获取呢? 最佳答案 获取LinearLayout.L
在下面的 xml 中,我试图绘制一个包含两个 block (一个 LinearLayout 和一个 TextView)的布局。我希望 LinearLayout 比 TextView 大 5 倍。此 x
我是一名优秀的程序员,十分优秀!