Android 自定义控件 动态设置高度
自定义控件的xml如下<?xmlversion="1.0"encoding="utf-8"?><!--磁贴的大小随屏幕设置--><LinearLayoutxmlns:an...
自定义控件的xml如下
<?xml version="1.0" encoding="utf-8"?>
<!-- 磁贴的大小随屏幕设置-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_marginLeft="5dp"
android:layout_marginTop="5dp">
<TextView
android:id="@+id/text"
android:layout_width="match_parent"
android:layout_height="180dp"
android:layout_weight="3"
android:editable="false"
android:text="this is the text part."
android:textSize="10sp"
android:singleLine="false"/>
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="60dp"
android:layout_weight="1"
android:editable="false"
android:gravity="center"
android:text="this is the text part."
android:textSize="15sp"
android:singleLine="false"/>
</LinearLayout> 展开
<?xml version="1.0" encoding="utf-8"?>
<!-- 磁贴的大小随屏幕设置-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_marginLeft="5dp"
android:layout_marginTop="5dp">
<TextView
android:id="@+id/text"
android:layout_width="match_parent"
android:layout_height="180dp"
android:layout_weight="3"
android:editable="false"
android:text="this is the text part."
android:textSize="10sp"
android:singleLine="false"/>
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="60dp"
android:layout_weight="1"
android:editable="false"
android:gravity="center"
android:text="this is the text part."
android:textSize="15sp"
android:singleLine="false"/>
</LinearLayout> 展开
2个回答
推荐于2018-03-26 · 知道合伙人软件行家
关注
展开全部
Android动态改变View控件大小的方法:
1、声明控件参数获取对象 LayoutParams lp;
2、获取控件参数: lp = 控件id.getLayoutParams();
3、设置控件参数:如高度。 lp.height -= 10;
4:、使设置生效:控件id.setLayoutParams(lp);
例如如要把Imageview下移200px: ImageView.setPadding( ImageView.getPaddingLeft(), ImageView.getPaddingTop()+200, ImageView.getPaddingRight(), ImageView.getPaddingBottom());
1、声明控件参数获取对象 LayoutParams lp;
2、获取控件参数: lp = 控件id.getLayoutParams();
3、设置控件参数:如高度。 lp.height -= 10;
4:、使设置生效:控件id.setLayoutParams(lp);
例如如要把Imageview下移200px: ImageView.setPadding( ImageView.getPaddingLeft(), ImageView.getPaddingTop()+200, ImageView.getPaddingRight(), ImageView.getPaddingBottom());
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询