在我的应用程序中,我想从主题中将填充应用于我的所有屏幕顶级容器。
示例:
这是布局文件。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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"
tools:context=".MainActivity">
<EditText
android:id="@+id/edt"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</RelativeLayout>
这是应用主题。
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:windowFrame">@drawable/window_frame</item>
</style>
我可以使用android:padding
将填充应用于父容器RelativeLayout。但我不想这样,因为我需要在每个布局文件中指定相同的内容,我想在主题中定义它 - AppTheme。
任何解决方案都将受到赞赏。
答案 0 :(得分:2)
为什么需要使用样式编写额外代码?
您可以直接在res / values / dimens.xml中设置填充,这样会容易得多。无论何时需要增加或减少值,您只需在每个活动的单个位置进行更改
e.g。 在dimens.xml中
$scope.cancelbtn=function(){
$('#home').trigger('click');
ngDialog.closeAll();
};
然后在活动布局中:
<dimen name="my_activity_padding">5dp</dimen>
答案 1 :(得分:1)
主题不是解决方案,因为它会在布局下的所有视图层次结构中添加填充。 (您的RelativeLayout以及EditText。
使用@Karan解决方案
答案 2 :(得分:0)
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:paddingTop">25dp</item>
</style>
在你的风格中使用android:paddingtop
答案 3 :(得分:0)
只需将此行添加到Manifest.xml <item name="android:padding">50dp</item>
中使用的主要主题android:theme="@style/AppTheme">
,它将影响使用此主题的所有布局。