English 中文(简体)
形成比例观点的最有效方法
原标题:Most effecient way to create proportional views
  • 时间:2010-06-29 07:01:35
  •  标签:
  • android

我想创建一整页,看上去:

 ---------------------------------------  
| --------  --------------------------- |  
||        ||          TextView         ||  
||        | --------------------------- |  
|| Image  | -----------------  -------- |  
|| View   ||                 ||        ||  
||        ||    TextView     ||        ||  
||        ||                 || Image  ||  
||        ||                 || View   ||  
| --------  ----------------- |        ||  
| --------------------------- |        ||  
||          TextView         ||        ||  
| ---------------------------  -------- |  
 ---------------------------------------  

(单位:千美元) 图像 大约20%的家长假肢 s。

主要问题: 真正......这样做的最佳途径是什么? 在搜查时间之后,我可以提出的最佳想法是获得屏幕宽松,简单地确定意见宽度达到20%。 然而,这种直观的做法似乎并不像最佳做法解决办法。 (例如,如果申请在完全屏幕上运行,那么这一解决办法就不可行。) “线性扫盲”以铺设该网页的方式赢得了拖车(我必须使用“相对”)。 我认为,最好根据家长的看法(而不是屏幕上的宽度),提出宽松的意见,但我不清楚如何这样做,因为当我试图确定我子女意见的宽点时,父母的意见。 0. 是否有任何良好、干净的解决办法来建立上述网页?

次要问题: 是否有任何人知道如何围绕上述图像总结案文? 在经过更多的搜查后,我无法找到解决办法;似乎像你一样,需要把几句案文混在一起。 是否有更好的办法失踪我?

任何人都能够提供。

问题回答

您可以使用和刺.:在XML布局内,继而取重物。

可以通过每节3条线性布局来实现这一点。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:weightSum="1" >

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="0.2"
            android:orientation="horizontal"
            android:weightSum="1" >

            <LinearLayout
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="0.2"
                android:orientation="vertical"
                android:weightSum="1" >

                <ImageView .... />

            </LinearLayout>
        </LinearLayout>
    </LinearLayout>

</RelativeLayout>

其他各节必须具有不同的严重性。

我知道很多布局,而这一解决办法在定义上并不是业绩的最佳办法。 也许其他人可以 imp笑。

我不相信这一点。 即便是你们是否确信,它能为少于4个“大”的屏幕作出最佳安排? 也许不要试图说明如何做这种布局,而是会发现那些更适合小屏幕的人。

如果 and子很难做到,那么你可能不会做什么。

关于第二个问题,你可以把图像传给上下层、下层、右边或左边。

android:drawableTop 
android:drawableBottom 
android:drawableLeft
android:drawableRight

你们也可以把婚礼同起来。

android:drawablePadding

check

当你详细说明设计的更多细节时,我试图回答第一个问题。 不管怎么说,我建议采用“亲属关系”。

他感谢这些答复。 进一步澄清:

a) 布局:体重不足似乎与相关单位合作;与它一样,只剩下一条线。 正如上文指出的,我看不出任何办法,来建立我与线性运动的特殊结构,因为正确的形象与左边不相符。 (如果能够这样做,请让我知道。)

b) Ah, 感谢。 有一些我错失了tag子等。 我试着这些人,看看看他们是否这样做。

c) 至于屏幕大小,我与海底板一道这样做。 还没有一个大的名字,但可能有些名字会落下。 不过,我同意,就一个小的4”筛选这一布局,可能不会有意义。

我不敢确定我这里的问题需要什么其他设计细节;我认为,我前面的阐述足够。 我是否可以说有什么具体细节?





相关问题
Android - ListView fling gesture triggers context menu

I m relatively new to Android development. I m developing an app with a ListView. I ve followed the info in #1338475 and have my app recognizing the fling gesture, but after the gesture is complete, ...

AsyncTask and error handling on Android

I m converting my code from using Handler to AsyncTask. The latter is great at what it does - asynchronous updates and handling of results in the main UI thread. What s unclear to me is how to handle ...

Android intent filter for a particular file extension?

I want to be able to download a file with a particular extension from the net, and have it passed to my application to deal with it, but I haven t been able to figure out the intent filter. The ...

Android & Web: What is the equivalent style for the web?

I am quite impressed by the workflow I follow when developing Android applications: Define a layout in an xml file and then write all the code in a code-behind style. Is there an equivalent style for ...

TiledLayer equivalent in Android [duplicate]

To draw landscapes, backgrounds with patterns etc, we used TiledLayer in J2ME. Is there an android counterpart for that. Does android provide an option to set such tiled patterns in the layout XML?

Using Repo with Msysgit

When following the Android Open Source Project instructions on installing repo for use with Git, after running the repo init command, I run into this error: /c/Users/Andrew Rabon/bin/repo: line ...

Android "single top" launch mode and onNewIntent method

I read in the Android documentation that by setting my Activity s launchMode property to singleTop OR by adding the FLAG_ACTIVITY_SINGLE_TOP flag to my Intent, that calling startActivity(intent) would ...

From Web Development to Android Development

I have pretty good skills in PHP , Mysql and Javascript for a junior developer. If I wanted to try my hand as Android Development do you think I might find it tough ? Also what new languages would I ...

热门标签